summaryrefslogtreecommitdiff
path: root/source4/client/client.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-04-14 13:19:40 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:11:33 -0500
commitd9c15b0f280621fca844c0e8482b5e95f4ad2d11 (patch)
tree2b4e506c9012caece3916f1d63fd9daf7a46fd9c /source4/client/client.c
parentfdbc094c3ebdc2464ebcdd220667348b684ce103 (diff)
downloadsamba-d9c15b0f280621fca844c0e8482b5e95f4ad2d11.tar.gz
samba-d9c15b0f280621fca844c0e8482b5e95f4ad2d11.tar.bz2
samba-d9c15b0f280621fca844c0e8482b5e95f4ad2d11.zip
r6342: fixed a bad union assumption that caused ACLs to fail on 64 bit machines
Thanks to lars and agruen for finding this (This used to be commit 2acc06918574b1178eecf3d61026f84f85bb40e1)
Diffstat (limited to 'source4/client/client.c')
-rw-r--r--source4/client/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/client/client.c b/source4/client/client.c
index 9738292f03..248113a564 100644
--- a/source4/client/client.c
+++ b/source4/client/client.c
@@ -1870,7 +1870,7 @@ static int cmd_acl(const char **cmd_ptr)
query.query_secdesc.level = RAW_FILEINFO_SEC_DESC;
query.query_secdesc.in.fnum = fnum;
- query.query_secdesc.in.secinfo_flags = 0x7;
+ query.query_secdesc.secinfo_flags = 0x7;
status = smb_raw_fileinfo(cli->tree, mem_ctx, &query);
if (!NT_STATUS_IS_OK(status)) {