From c70ac29c5441073752da7384b7f3bf54c9986aa0 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 4 Apr 2012 08:34:25 +1000 Subject: s3-vfs: Remove unused lsetxattr call from VFS modules, system.c and configure If this is ever needed again, it would be more appropriate as an options argument to listxattr. Andrew Bartlett --- source3/smbd/vfs.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'source3/smbd') diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c index 2c5a0b8a89c..923bd7c9a2d 100644 --- a/source3/smbd/vfs.c +++ b/source3/smbd/vfs.c @@ -2202,15 +2202,6 @@ int smb_vfs_call_setxattr(struct vfs_handle_struct *handle, const char *path, return handle->fns->setxattr_fn(handle, path, name, value, size, flags); } -int smb_vfs_call_lsetxattr(struct vfs_handle_struct *handle, const char *path, - const char *name, const void *value, size_t size, - int flags) -{ - VFS_FIND(lsetxattr); - return handle->fns->lsetxattr_fn(handle, path, name, value, size, - flags); -} - int smb_vfs_call_fsetxattr(struct vfs_handle_struct *handle, struct files_struct *fsp, const char *name, const void *value, size_t size, int flags) -- cgit