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 /examples | |
parent | c5b17c555576a2b8e24e0df613dde922fe60520d (diff) | |
download | samba-c70ac29c5441073752da7384b7f3bf54c9986aa0.tar.gz |
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 'examples')
-rw-r--r-- | examples/VFS/skel_opaque.c | 7 | ||||
-rw-r--r-- | examples/VFS/skel_transparent.c | 6 |
2 files changed, 0 insertions, 13 deletions
diff --git a/examples/VFS/skel_opaque.c b/examples/VFS/skel_opaque.c index 50a8e2908ce..e41895c611c 100644 --- a/examples/VFS/skel_opaque.c +++ b/examples/VFS/skel_opaque.c @@ -711,12 +711,6 @@ static int skel_setxattr(vfs_handle_struct *handle, const char *path, const char return -1; } -static int skel_lsetxattr(vfs_handle_struct *handle, const char *path, const char *name, const void *value, size_t size, int flags) -{ - errno = ENOSYS; - return -1; -} - static int skel_fsetxattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *name, const void *value, size_t size, int flags) { errno = ENOSYS; @@ -907,7 +901,6 @@ struct vfs_fn_pointers skel_opaque_fns = { .lremovexattr_fn = skel_lremovexattr, .fremovexattr_fn = skel_fremovexattr, .setxattr_fn = skel_setxattr, - .lsetxattr_fn = skel_lsetxattr, .fsetxattr_fn = skel_fsetxattr, /* aio operations */ diff --git a/examples/VFS/skel_transparent.c b/examples/VFS/skel_transparent.c index 932888e2dea..5aa3bbb2710 100644 --- a/examples/VFS/skel_transparent.c +++ b/examples/VFS/skel_transparent.c @@ -681,11 +681,6 @@ static int skel_setxattr(vfs_handle_struct *handle, const char *path, const char return SMB_VFS_NEXT_SETXATTR(handle, path, name, value, size, flags); } -static int skel_lsetxattr(vfs_handle_struct *handle, const char *path, const char *name, const void *value, size_t size, int flags) -{ - return SMB_VFS_NEXT_LSETXATTR(handle, path, name, value, size, flags); -} - static int skel_fsetxattr(vfs_handle_struct *handle, struct files_struct *fsp, const char *name, const void *value, size_t size, int flags) { return SMB_VFS_NEXT_FSETXATTR(handle, fsp, name, value, size, flags); @@ -865,7 +860,6 @@ struct vfs_fn_pointers skel_transparent_fns = { .lremovexattr_fn = skel_lremovexattr, .fremovexattr_fn = skel_fremovexattr, .setxattr_fn = skel_setxattr, - .lsetxattr_fn = skel_lsetxattr, .fsetxattr_fn = skel_fsetxattr, /* aio operations */ |