summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorUri Simchoni <uri@samba.org>2017-11-10 21:39:54 +0200
committerJeremy Allison <jra@samba.org>2017-11-11 04:49:27 +0100
commit0f1dede9a90996d0a0cbbe91c2a0389b47b706b7 (patch)
tree62f0af5de8ce50ed62e795955f5d8d9725bb8021 /source3
parentfd1aa4a6b0f58882e3ae6a53f9116d254e036cdf (diff)
downloadsamba-0f1dede9a90996d0a0cbbe91c2a0389b47b706b7.tar.gz
vfs_glusterfs: remove init_search_op handling
This VFS function is about to be removed. It can be removed by a separate commit because both the glusterfs and the default implementations are no-ops. Signed-off-by: Uri Simchoni <uri@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3')
-rw-r--r--source3/modules/vfs_glusterfs.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/source3/modules/vfs_glusterfs.c b/source3/modules/vfs_glusterfs.c
index 8c245573b55..9489d9d4990 100644
--- a/source3/modules/vfs_glusterfs.c
+++ b/source3/modules/vfs_glusterfs.c
@@ -541,12 +541,6 @@ static void vfs_gluster_rewinddir(struct vfs_handle_struct *handle, DIR *dirp)
glfs_seekdir((void *)dirp, 0);
}
-static void vfs_gluster_init_search_op(struct vfs_handle_struct *handle,
- DIR *dirp)
-{
- return;
-}
-
static int vfs_gluster_mkdir(struct vfs_handle_struct *handle,
const struct smb_filename *smb_fname,
mode_t mode)
@@ -1434,7 +1428,6 @@ static struct vfs_fn_pointers glusterfs_fns = {
.mkdir_fn = vfs_gluster_mkdir,
.rmdir_fn = vfs_gluster_rmdir,
.closedir_fn = vfs_gluster_closedir,
- .init_search_op_fn = vfs_gluster_init_search_op,
/* File Operations */