summaryrefslogtreecommitdiff
path: root/source3/modules
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2019-10-04 15:17:32 -0700
committerRalph Boehme <slow@samba.org>2019-10-10 06:09:41 +0000
commitffa09e09e87ff82d0091529230d9122358d70e96 (patch)
treee133378d20ab453690ea710f3d8232c41dadb4ca /source3/modules
parenta940c4c5ac180acf15d005fb3d4fa4a0b3e9b448 (diff)
downloadsamba-ffa09e09e87ff82d0091529230d9122358d70e96.tar.gz
s3: VFS: vfs_streams_depot: Remove rmdir_fn(). No longer used.
Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
Diffstat (limited to 'source3/modules')
-rw-r--r--source3/modules/vfs_streams_depot.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/source3/modules/vfs_streams_depot.c b/source3/modules/vfs_streams_depot.c
index 0e2bfa9684d..9f3b79992bc 100644
--- a/source3/modules/vfs_streams_depot.c
+++ b/source3/modules/vfs_streams_depot.c
@@ -839,14 +839,6 @@ static int streams_depot_unlinkat(vfs_handle_struct *handle,
return ret;
}
-static int streams_depot_rmdir(vfs_handle_struct *handle,
- const struct smb_filename *smb_fname)
-{
- return streams_depot_rmdir_internal(handle,
- handle->conn->cwd_fsp,
- smb_fname);
-}
-
static int streams_depot_renameat(vfs_handle_struct *handle,
files_struct *srcfsp,
const struct smb_filename *smb_fname_src,
@@ -1083,7 +1075,6 @@ static struct vfs_fn_pointers vfs_streams_depot_fns = {
.stat_fn = streams_depot_stat,
.lstat_fn = streams_depot_lstat,
.unlinkat_fn = streams_depot_unlinkat,
- .rmdir_fn = streams_depot_rmdir,
.renameat_fn = streams_depot_renameat,
.streaminfo_fn = streams_depot_streaminfo,
};