summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_unityed_media.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2019-09-06 15:50:19 -0700
committerRalph Boehme <slow@samba.org>2019-09-11 18:24:31 +0000
commitfcccf3ea96ed046d30fa771506ce1990757c01d0 (patch)
treeb35bb7dd16316c6f1aeb8ec2b960843d5dcb3229 /source3/modules/vfs_unityed_media.c
parent0a8bd88189090f71fd10e87f53b3cdf83929d501 (diff)
downloadsamba-fcccf3ea96ed046d30fa771506ce1990757c01d0.tar.gz
s3: VFS: vfs_unityed_media. Remove mkdir_fn(). No longer used.
Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
Diffstat (limited to 'source3/modules/vfs_unityed_media.c')
-rw-r--r--source3/modules/vfs_unityed_media.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/source3/modules/vfs_unityed_media.c b/source3/modules/vfs_unityed_media.c
index a05f2ac9a5e..6f4ec54143e 100644
--- a/source3/modules/vfs_unityed_media.c
+++ b/source3/modules/vfs_unityed_media.c
@@ -786,35 +786,6 @@ static void um_rewinddir(vfs_handle_struct *handle,
((um_dirinfo_struct*)dirp)->dirstream);
}
-static int um_mkdir(vfs_handle_struct *handle,
- const struct smb_filename *smb_fname,
- mode_t mode)
-{
- int status;
- const char *path = smb_fname->base_name;
- struct smb_filename *client_fname = NULL;
-
- DEBUG(10, ("Entering with path '%s'\n", path));
-
- if (!is_in_media_files(path) || !is_in_media_dir(path)) {
- return SMB_VFS_NEXT_MKDIR(handle, smb_fname, mode);
- }
-
- status = alloc_get_client_smb_fname(handle,
- talloc_tos(),
- smb_fname,
- &client_fname);
- if (status != 0) {
- goto err;
- }
-
- status = SMB_VFS_NEXT_MKDIR(handle, client_fname, mode);
-err:
- TALLOC_FREE(client_fname);
- DEBUG(10, ("Leaving with path '%s'\n", path));
- return status;
-}
-
static int um_mkdirat(vfs_handle_struct *handle,
struct files_struct *dirfsp,
const struct smb_filename *smb_fname,
@@ -1952,7 +1923,6 @@ static struct vfs_fn_pointers vfs_um_fns = {
.seekdir_fn = um_seekdir,
.telldir_fn = um_telldir,
.rewind_dir_fn = um_rewinddir,
- .mkdir_fn = um_mkdir,
.mkdirat_fn = um_mkdirat,
.rmdir_fn = um_rmdir,
.closedir_fn = um_closedir,