1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s4:librpc/rpc: ask for 0x2000 bytes in the ioctl case to match all othercases

metze
This commit is contained in:
Stefan Metzmacher 2009-04-17 19:57:39 +02:00
parent 4e1b633dab
commit 900d569bed

View File

@ -258,7 +258,7 @@ static NTSTATUS smb2_send_trans_request(struct dcerpc_connection *c, DATA_BLOB *
ZERO_STRUCT(io); ZERO_STRUCT(io);
io.in.file.handle = smb->handle; io.in.file.handle = smb->handle;
io.in.function = FSCTL_NAMED_PIPE_READ_WRITE; 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.flags = 1;
io.in.out = *blob; io.in.out = *blob;