1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s3: VFS: vfs_syncops. Remove mkdir_fn(). No longer used.

Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
This commit is contained in:
Jeremy Allison 2019-09-06 15:49:37 -07:00 committed by Ralph Boehme
parent 12ab9553d4
commit 0a8bd88189

View File

@ -251,13 +251,6 @@ static int syncops_mknodat(vfs_handle_struct *handle,
dev));
}
static int syncops_mkdir(vfs_handle_struct *handle,
const struct smb_filename *smb_fname,
mode_t mode)
{
SYNCOPS_NEXT_SMB_FNAME(MKDIR, smb_fname, (handle, smb_fname, mode));
}
static int syncops_mkdirat(vfs_handle_struct *handle,
struct files_struct *dirfsp,
const struct smb_filename *smb_fname,
@ -330,7 +323,6 @@ static int syncops_connect(struct vfs_handle_struct *handle, const char *service
static struct vfs_fn_pointers vfs_syncops_fns = {
.connect_fn = syncops_connect,
.mkdir_fn = syncops_mkdir,
.mkdirat_fn = syncops_mkdirat,
.rmdir_fn = syncops_rmdir,
.open_fn = syncops_open,