diff options
author | Gerald Carter <jerry@samba.org> | 2002-01-22 18:16:56 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2002-01-22 18:16:56 +0000 |
commit | c44f7480bb08aca32c86d71934bcf65251492980 (patch) | |
tree | b52fd391a9ddd0abb8629f5e518cee6f6d9d6c0f /source/rpc_server/srv_pipe_hnd.c | |
parent | 75d40a4785143a3d7ce9c87fb00849915845d8fe (diff) | |
download | samba-c44f7480bb08aca32c86d71934bcf65251492980.tar.gz samba-c44f7480bb08aca32c86d71934bcf65251492980.tar.xz samba-c44f7480bb08aca32c86d71934bcf65251492980.zip |
merge from appliance_head
Diffstat (limited to 'source/rpc_server/srv_pipe_hnd.c')
-rw-r--r-- | source/rpc_server/srv_pipe_hnd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/rpc_server/srv_pipe_hnd.c b/source/rpc_server/srv_pipe_hnd.c index 5c7ae6ba43d..16b47b383c3 100644 --- a/source/rpc_server/srv_pipe_hnd.c +++ b/source/rpc_server/srv_pipe_hnd.c @@ -476,7 +476,7 @@ authentication failed. Denying the request.\n", p->name)); * Check the data length doesn't go over the 10Mb limit. */ - if(prs_data_size(&p->in_data.data) + data_len > 10*1024*1024) { + if(prs_data_size(&p->in_data.data) + data_len > 15*1024*1024) { DEBUG(0,("process_request_pdu: rpc data buffer too large (%u) + (%u)\n", (unsigned int)prs_data_size(&p->in_data.data), (unsigned int)data_len )); set_incoming_fault(p); |