summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_full_audit.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-01-08 10:51:40 +0100
committerMichael Adam <obnox@samba.org>2008-01-08 10:51:40 +0100
commit9f691df852581b1ae4fab7cb9907606f4dcab291 (patch)
treee7e7e8930ddc2c7ef5512228182d496774c268cd /source3/modules/vfs_full_audit.c
parent50ee744fa445b74136a8f2cef36c2b48ba7ee5f6 (diff)
downloadsamba-9f691df852581b1ae4fab7cb9907606f4dcab291.tar.gz
samba-9f691df852581b1ae4fab7cb9907606f4dcab291.tar.bz2
samba-9f691df852581b1ae4fab7cb9907606f4dcab291.zip
Remove redundant parameter fd from SMB_VFS_FLISTXATTR().
Michael (This used to be commit 167649b3b8bc293f8434ffc9fb5f80463e4e75be)
Diffstat (limited to 'source3/modules/vfs_full_audit.c')
-rw-r--r--source3/modules/vfs_full_audit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/modules/vfs_full_audit.c b/source3/modules/vfs_full_audit.c
index 82e212ed0a..ecf136347c 100644
--- a/source3/modules/vfs_full_audit.c
+++ b/source3/modules/vfs_full_audit.c
@@ -277,7 +277,7 @@ static ssize_t smb_full_audit_listxattr(struct vfs_handle_struct *handle,
static ssize_t smb_full_audit_llistxattr(struct vfs_handle_struct *handle,
const char *path, char *list, size_t size);
static ssize_t smb_full_audit_flistxattr(struct vfs_handle_struct *handle,
- struct files_struct *fsp, int fd, char *list,
+ struct files_struct *fsp, char *list,
size_t size);
static int smb_full_audit_removexattr(struct vfs_handle_struct *handle,
const char *path,
@@ -1994,12 +1994,12 @@ static ssize_t smb_full_audit_llistxattr(struct vfs_handle_struct *handle,
}
static ssize_t smb_full_audit_flistxattr(struct vfs_handle_struct *handle,
- struct files_struct *fsp, int fd, char *list,
+ struct files_struct *fsp, char *list,
size_t size)
{
ssize_t result;
- result = SMB_VFS_NEXT_FLISTXATTR(handle, fsp, fd, list, size);
+ result = SMB_VFS_NEXT_FLISTXATTR(handle, fsp, list, size);
do_log(SMB_VFS_OP_FLISTXATTR, (result >= 0), handle,
"%s", fsp->fsp_name);