diff options
author | Michael Adam <obnox@samba.org> | 2008-01-06 18:48:02 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-01-06 23:08:00 +0100 |
commit | 05352cf2cb7f9710444d340f3f14ac6917fb0416 (patch) | |
tree | 0331bf1c94f0dbd1053cad7b686c23f1b6eb297c /source3/modules/vfs_gpfs.c | |
parent | b55171c1d7ae7d8f3218086fe14cc258065f9a41 (diff) | |
download | samba-05352cf2cb7f9710444d340f3f14ac6917fb0416.tar.gz samba-05352cf2cb7f9710444d340f3f14ac6917fb0416.tar.bz2 samba-05352cf2cb7f9710444d340f3f14ac6917fb0416.zip |
Remove superfluous parameter fd from SMB_VFS_FSET_NT_ACL().
Michael
(This used to be commit 4f2d139a186048f08180378a877b69d2f80ad51f)
Diffstat (limited to 'source3/modules/vfs_gpfs.c')
-rw-r--r-- | source3/modules/vfs_gpfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c index 21e5a6bcfa..0f7dc81ae6 100644 --- a/source3/modules/vfs_gpfs.c +++ b/source3/modules/vfs_gpfs.c @@ -363,7 +363,7 @@ static NTSTATUS gpfsacl_set_nt_acl_internal(files_struct *fsp, uint32 security_i return result; } -static NTSTATUS gpfsacl_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp, int fd, uint32 security_info_sent, SEC_DESC *psd) +static NTSTATUS gpfsacl_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp, uint32 security_info_sent, SEC_DESC *psd) { return gpfsacl_set_nt_acl_internal(fsp, security_info_sent, psd); } |