diff options
author | Tim Prouty <tprouty@samba.org> | 2009-01-30 15:19:55 -0800 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2009-01-30 15:44:07 -0800 |
commit | 8b7a1394aae8c59adb04a8cfc5e38ae0cb4462ab (patch) | |
tree | 85dc300cf3b4ebb1b49d1174cc47c9f73deecc55 /source3/modules | |
parent | 15cfc38c255c8caa098ca57774d1ee74b306c813 (diff) | |
download | samba-8b7a1394aae8c59adb04a8cfc5e38ae0cb4462ab.tar.gz samba-8b7a1394aae8c59adb04a8cfc5e38ae0cb4462ab.tar.bz2 samba-8b7a1394aae8c59adb04a8cfc5e38ae0cb4462ab.zip |
s3 onefs: Fix onefs ACLs to work with updated ACL syscall
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/onefs_acl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/onefs_acl.c b/source3/modules/onefs_acl.c index b9ec2d68e0..14b27b80e0 100644 --- a/source3/modules/onefs_acl.c +++ b/source3/modules/onefs_acl.c @@ -667,7 +667,7 @@ onefs_fget_nt_acl(vfs_handle_struct *handle, files_struct *fsp, } error = ifs_get_security_descriptor(fsp->fh->fd, security_info, - &sd_size, sd); + sd_size, &sd_size, sd); if (error && (errno != EMSGSIZE)) { DEBUG(0, ("Failed getting size of security descriptor! " "errno=%d\n", errno)); |