diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-04-04 08:34:25 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-04-05 13:39:00 +1000 |
commit | c70ac29c5441073752da7384b7f3bf54c9986aa0 (patch) | |
tree | ad33c1dc4ac5782f682ce66029d73cc5551a4a82 /source3/include/vfs.h | |
parent | c5b17c555576a2b8e24e0df613dde922fe60520d (diff) | |
download | samba-c70ac29c5441073752da7384b7f3bf54c9986aa0.tar.gz samba-c70ac29c5441073752da7384b7f3bf54c9986aa0.tar.bz2 samba-c70ac29c5441073752da7384b7f3bf54c9986aa0.zip |
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
Diffstat (limited to 'source3/include/vfs.h')
-rw-r--r-- | source3/include/vfs.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/include/vfs.h b/source3/include/vfs.h index 258bec9275..0e42a3e812 100644 --- a/source3/include/vfs.h +++ b/source3/include/vfs.h @@ -138,7 +138,7 @@ /* Bump to version 29 - Samba 3.6.0 will ship with interface version 28. */ /* Leave at 29 - not yet releases. Add fsctl. Richard Sharpe */ /* Leave at 29 - not yet released. add SMB_VFS_GET_DFS_REFERRAL() - metze */ -/* Leave at 29 - not yet released. Remove llistxattr and lgetxattr - abartlet */ +/* Leave at 29 - not yet released. Remove l{list,get,set,remove}xattr - abartlet */ #define SMB_VFS_INTERFACE_VERSION 29 /* @@ -406,7 +406,6 @@ struct vfs_fn_pointers { int (*lremovexattr_fn)(struct vfs_handle_struct *handle, const char *path, const char *name); int (*fremovexattr_fn)(struct vfs_handle_struct *handle, struct files_struct *fsp, const char *name); int (*setxattr_fn)(struct vfs_handle_struct *handle, const char *path, const char *name, const void *value, size_t size, int flags); - int (*lsetxattr_fn)(struct vfs_handle_struct *handle, const char *path, const char *name, const void *value, size_t size, int flags); int (*fsetxattr_fn)(struct vfs_handle_struct *handle, struct files_struct *fsp, const char *name, const void *value, size_t size, int flags); /* aio operations */ |