From: Stefan Metzmacher Date: Fri, 17 Apr 2009 17:57:39 +0000 (+0200) Subject: s4:librpc/rpc: ask for 0x2000 bytes in the ioctl case to match all othercases X-Git-Tag: tdb-1.1.5~953 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=900d569bede23972ddaf9603f3a63bf7e3d007e1;p=thirdparty%2Fsamba.git s4:librpc/rpc: ask for 0x2000 bytes in the ioctl case to match all othercases metze --- diff --git a/source4/librpc/rpc/dcerpc_smb2.c b/source4/librpc/rpc/dcerpc_smb2.c index 84ba8114e27..e4933652f44 100644 --- a/source4/librpc/rpc/dcerpc_smb2.c +++ b/source4/librpc/rpc/dcerpc_smb2.c @@ -258,7 +258,7 @@ static NTSTATUS smb2_send_trans_request(struct dcerpc_connection *c, DATA_BLOB * ZERO_STRUCT(io); io.in.file.handle = smb->handle; io.in.function = FSCTL_NAMED_PIPE_READ_WRITE; - io.in.max_response_size = 0x1000; + io.in.max_response_size = 0x2000; io.in.flags = 1; io.in.out = *blob;