diff options
author | Michael Adam <obnox@samba.org> | 2008-01-08 01:56:56 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-01-08 01:56:56 +0100 |
commit | 66273a795328768647c1be0d90885b15a095a011 (patch) | |
tree | a63c49e760f517005454a3e3abe93e20af0c2f0f /source3/modules | |
parent | 5921607f2647cec20a6bcebd17c5a0c53449c1ba (diff) | |
download | samba-66273a795328768647c1be0d90885b15a095a011.tar.gz samba-66273a795328768647c1be0d90885b15a095a011.tar.bz2 samba-66273a795328768647c1be0d90885b15a095a011.zip |
Remove forgotton fd from solarisacl_sys_acl_get_fd().
Michael
(This used to be commit 38f34b1d743caaf9f2d750580b991958d260fead)
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_solarisacl.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/modules/vfs_solarisacl.c b/source3/modules/vfs_solarisacl.c index ce763f07e7..7bdfe8465b 100644 --- a/source3/modules/vfs_solarisacl.c +++ b/source3/modules/vfs_solarisacl.c @@ -100,8 +100,7 @@ SMB_ACL_T solarisacl_sys_acl_get_file(vfs_handle_struct *handle, * get the access ACL of a file referred to by a fd */ SMB_ACL_T solarisacl_sys_acl_get_fd(vfs_handle_struct *handle, - files_struct *fsp, - int fd) + files_struct *fsp) { SMB_ACL_T result = NULL; int count; @@ -109,7 +108,7 @@ SMB_ACL_T solarisacl_sys_acl_get_fd(vfs_handle_struct *handle, DEBUG(10, ("entering solarisacl_sys_acl_get_fd.\n")); - if (!solaris_acl_get_fd(fd, &solaris_acl, &count)) { + if (!solaris_acl_get_fd(fsp->fh->fd, &solaris_acl, &count)) { goto done; } /* |