diff options
author | Gerald Carter <jerry@samba.org> | 2002-01-22 18:19:44 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2002-01-22 18:19:44 +0000 |
commit | 9ba1be5d4596bc64d74bde4d509dc9657c7a6270 (patch) | |
tree | ce0f187ce86f2eb04b660d2dffa252e34f03ca98 /source/rpc_server/srv_pipe_hnd.c | |
parent | c44f7480bb08aca32c86d71934bcf65251492980 (diff) | |
download | samba-9ba1be5d4596bc64d74bde4d509dc9657c7a6270.tar.gz samba-9ba1be5d4596bc64d74bde4d509dc9657c7a6270.tar.xz samba-9ba1be5d4596bc64d74bde4d509dc9657c7a6270.zip |
added comment about NT4 spoolsv.exe 12Mb PDU bug
Diffstat (limited to 'source/rpc_server/srv_pipe_hnd.c')
-rw-r--r-- | source/rpc_server/srv_pipe_hnd.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/rpc_server/srv_pipe_hnd.c b/source/rpc_server/srv_pipe_hnd.c index 16b47b383c3..0b0936356a6 100644 --- a/source/rpc_server/srv_pipe_hnd.c +++ b/source/rpc_server/srv_pipe_hnd.c @@ -474,6 +474,9 @@ authentication failed. Denying the request.\n", p->name)); /* * Check the data length doesn't go over the 10Mb limit. + * increased after observing a bug in the Windows NT 4.0 SP6a + * spoolsv.exe when the response to a GETPRINTERDRIVER2 RPC + * will not fit in the initial buffer of size 0x1068 --jerry 22/01/2002 */ if(prs_data_size(&p->in_data.data) + data_len > 15*1024*1024) { |