summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_default.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-01-08 10:00:47 +0100
committerMichael Adam <obnox@samba.org>2008-01-08 10:00:47 +0100
commit50ee744fa445b74136a8f2cef36c2b48ba7ee5f6 (patch)
tree343f78f7f61541d67ba84c2d22aff1238db37cac /source3/modules/vfs_default.c
parent66273a795328768647c1be0d90885b15a095a011 (diff)
downloadsamba-50ee744fa445b74136a8f2cef36c2b48ba7ee5f6.tar.gz
samba-50ee744fa445b74136a8f2cef36c2b48ba7ee5f6.tar.bz2
samba-50ee744fa445b74136a8f2cef36c2b48ba7ee5f6.zip
Remove redundant parameter fd from SMB_VFS_FGETXATTR().
Michael (This used to be commit 2cb739a82dc6bb194d60718cc74b26ee7c1c46a7)
Diffstat (limited to 'source3/modules/vfs_default.c')
-rw-r--r--source3/modules/vfs_default.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c
index a46c2a336f..ec6e6e912a 100644
--- a/source3/modules/vfs_default.c
+++ b/source3/modules/vfs_default.c
@@ -1141,9 +1141,9 @@ static ssize_t vfswrap_lgetxattr(struct vfs_handle_struct *handle,const char *pa
return sys_lgetxattr(path, name, value, size);
}
-static ssize_t vfswrap_fgetxattr(struct vfs_handle_struct *handle, struct files_struct *fsp,int fd, const char *name, void *value, size_t size)
+static ssize_t vfswrap_fgetxattr(struct vfs_handle_struct *handle, struct files_struct *fsp, const char *name, void *value, size_t size)
{
- return sys_fgetxattr(fd, name, value, size);
+ return sys_fgetxattr(fsp->fh->fd, name, value, size);
}
static ssize_t vfswrap_listxattr(struct vfs_handle_struct *handle, const char *path, char *list, size_t size)