summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-04-17 19:57:39 +0200
committerStefan Metzmacher <metze@samba.org>2009-04-20 18:14:58 +0200
commit900d569bede23972ddaf9603f3a63bf7e3d007e1 (patch)
treed696dcfc1b732baf93e3fc2a37a098638fdc336b /source4
parent4e1b633dab6fdd42425c43de07a57808c9003cb6 (diff)
downloadsamba-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
Diffstat (limited to 'source4')
-rw-r--r--source4/librpc/rpc/dcerpc_smb2.c2
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;