diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-04-17 19:57:39 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-04-20 18:14:58 +0200 |
commit | 900d569bede23972ddaf9603f3a63bf7e3d007e1 (patch) | |
tree | d696dcfc1b732baf93e3fc2a37a098638fdc336b | |
parent | 4e1b633dab6fdd42425c43de07a57808c9003cb6 (diff) | |
download | samba-900d569bede23972ddaf9603f3a63bf7e3d007e1.tar.gz samba-900d569bede23972ddaf9603f3a63bf7e3d007e1.tar.bz2 samba-900d569bede23972ddaf9603f3a63bf7e3d007e1.zip |
s4:librpc/rpc: ask for 0x2000 bytes in the ioctl case to match all othercases
metze
-rw-r--r-- | source4/librpc/rpc/dcerpc_smb2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/rpc/dcerpc_smb2.c b/source4/librpc/rpc/dcerpc_smb2.c index 84ba8114e2..e4933652f4 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; |