summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2019-09-06 15:52:14 -0700
committerRalph Boehme <slow@samba.org>2019-09-11 18:24:31 +0000
commitd992708d3d51d86391f218ac72127fbc91d1971b (patch)
tree4c27500ebef64a2164b96135f0c8d7619ef84bbf
parenta6f238f6e7567fe62b4b6f883898201518ac84d8 (diff)
downloadsamba-d992708d3d51d86391f218ac72127fbc91d1971b.tar.gz
s3: VFS: vfs_full_audit. Remove mkdir_fn(). No longer used.
NB, this will now fail smb_vfs_assert_all_fns() until we remove the mkdir_fn() from the VFS definitions. Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
-rw-r--r--source3/modules/vfs_full_audit.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/source3/modules/vfs_full_audit.c b/source3/modules/vfs_full_audit.c
index a3011887a5d..6a70b84774d 100644
--- a/source3/modules/vfs_full_audit.c
+++ b/source3/modules/vfs_full_audit.c
@@ -108,7 +108,6 @@ typedef enum _vfs_op_type {
SMB_VFS_OP_SEEKDIR,
SMB_VFS_OP_TELLDIR,
SMB_VFS_OP_REWINDDIR,
- SMB_VFS_OP_MKDIR,
SMB_VFS_OP_MKDIRAT,
SMB_VFS_OP_RMDIR,
SMB_VFS_OP_CLOSEDIR,
@@ -255,7 +254,6 @@ static struct {
{ SMB_VFS_OP_SEEKDIR, "seekdir" },
{ SMB_VFS_OP_TELLDIR, "telldir" },
{ SMB_VFS_OP_REWINDDIR, "rewinddir" },
- { SMB_VFS_OP_MKDIR, "mkdir" },
{ SMB_VFS_OP_MKDIRAT, "mkdirat" },
{ SMB_VFS_OP_RMDIR, "rmdir" },
{ SMB_VFS_OP_CLOSEDIR, "closedir" },
@@ -998,19 +996,6 @@ static void smb_full_audit_rewinddir(vfs_handle_struct *handle,
do_log(SMB_VFS_OP_REWINDDIR, True, handle, "");
}
-static int smb_full_audit_mkdir(vfs_handle_struct *handle,
- const struct smb_filename *smb_fname, mode_t mode)
-{
- int result;
-
- result = SMB_VFS_NEXT_MKDIR(handle, smb_fname, mode);
-
- do_log(SMB_VFS_OP_MKDIR, (result >= 0), handle, "%s",
- smb_fname->base_name);
-
- return result;
-}
-
static int smb_full_audit_mkdirat(vfs_handle_struct *handle,
struct files_struct *dirfsp,
const struct smb_filename *smb_fname,
@@ -2879,7 +2864,6 @@ static struct vfs_fn_pointers vfs_full_audit_fns = {
.seekdir_fn = smb_full_audit_seekdir,
.telldir_fn = smb_full_audit_telldir,
.rewind_dir_fn = smb_full_audit_rewinddir,
- .mkdir_fn = smb_full_audit_mkdir,
.mkdirat_fn = smb_full_audit_mkdirat,
.rmdir_fn = smb_full_audit_rmdir,
.closedir_fn = smb_full_audit_closedir,