From: Tim Prouty Date: Fri, 30 Jan 2009 23:19:55 +0000 (-0800) Subject: s3 onefs: Fix onefs ACLs to work with updated ACL syscall X-Git-Tag: samba-4.0.0alpha7~417^2~218 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b7a1394aae8c59adb04a8cfc5e38ae0cb4462ab;p=thirdparty%2Fsamba.git s3 onefs: Fix onefs ACLs to work with updated ACL syscall --- diff --git a/source3/modules/onefs_acl.c b/source3/modules/onefs_acl.c index b9ec2d68e0c..14b27b80e00 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));