diff options
author | Michael Adam <obnox@samba.org> | 2008-01-08 01:14:24 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-01-08 01:14:24 +0100 |
commit | 7b201c177b3668f54751ba17d6a0b53ed913e7f7 (patch) | |
tree | 6b935b0f2b8925f07f740c279a935e3d00872195 /source/smbd/posix_acls.c | |
parent | 8b52626f7fd30e1bdf2dd3b4263de1aff282cdd5 (diff) | |
download | samba-7b201c177b3668f54751ba17d6a0b53ed913e7f7.tar.gz samba-7b201c177b3668f54751ba17d6a0b53ed913e7f7.tar.xz samba-7b201c177b3668f54751ba17d6a0b53ed913e7f7.zip |
Remove redundant parameter fd from SMB_VFS_FCHMOD_ACL().
Michael
Diffstat (limited to 'source/smbd/posix_acls.c')
-rw-r--r-- | source/smbd/posix_acls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/posix_acls.c b/source/smbd/posix_acls.c index b07033b8ac9..23a246fea76 100644 --- a/source/smbd/posix_acls.c +++ b/source/smbd/posix_acls.c @@ -3802,7 +3802,7 @@ int inherit_access_acl(connection_struct *conn, const char *inherit_from_dir, and set the mask to rwx. Needed to preserve complex ACLs set by NT. ****************************************************************************/ -int fchmod_acl(files_struct *fsp, int fd, mode_t mode) +int fchmod_acl(files_struct *fsp, mode_t mode) { connection_struct *conn = fsp->conn; SMB_ACL_T posix_acl = NULL; |