summaryrefslogtreecommitdiff
path: root/source4/libcli/raw/rawacl.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-12-21 11:47:08 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:07:33 -0500
commit101d0333a333cee6d3fc33cb4655976145fb87e8 (patch)
treef29d0de9073613894ec37d7fed1a99abf82110fa /source4/libcli/raw/rawacl.c
parentfa4271fb39d593fd4516e8ee32234299ffd31967 (diff)
downloadsamba-101d0333a333cee6d3fc33cb4655976145fb87e8.tar.gz
samba-101d0333a333cee6d3fc33cb4655976145fb87e8.tar.bz2
samba-101d0333a333cee6d3fc33cb4655976145fb87e8.zip
r4316: - now that the trans2 code properly supports multi-part requests, we can set
a maximum sized max_data in libcli trans2 code - fixed string termination in the EA_LIST trans2 findfirst level (This used to be commit a2a5f147f4faac8a48ff8f1b3e5f1334c92575bb)
Diffstat (limited to 'source4/libcli/raw/rawacl.c')
-rw-r--r--source4/libcli/raw/rawacl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/raw/rawacl.c b/source4/libcli/raw/rawacl.c
index 253a3cbbe7..97e0212137 100644
--- a/source4/libcli/raw/rawacl.c
+++ b/source4/libcli/raw/rawacl.c
@@ -34,7 +34,7 @@ struct smbcli_request *smb_raw_query_secdesc_send(struct smbcli_tree *tree,
nt.in.max_setup = 0;
nt.in.max_param = 4;
- nt.in.max_data = smb_raw_max_trans_data(tree, 4);
+ nt.in.max_data = 0xFFFF;
nt.in.setup_count = 0;
nt.in.function = NT_TRANSACT_QUERY_SECURITY_DESC;
nt.in.setup = NULL;