s3: VFS: vfs_extd_audit: Remove rmdir_fn(). No longer used.
authorJeremy Allison <jra@samba.org>
Fri, 4 Oct 2019 21:49:54 +0000 (14:49 -0700)
committerRalph Boehme <slow@samba.org>
Thu, 10 Oct 2019 06:09:41 +0000 (06:09 +0000)
Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
source3/modules/vfs_extd_audit.c

index 86968e67f5c6dbb36395a465dca051a4bab10d71..97b072f00de7cca9ff952e0599b0c4b2880cba5d 100644 (file)
@@ -236,27 +236,6 @@ static int audit_mkdirat(vfs_handle_struct *handle,
        return result;
 }
 
        return result;
 }
 
-static int audit_rmdir(vfs_handle_struct *handle,
-                       const struct smb_filename *smb_fname)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_RMDIR(handle, smb_fname);
-
-       if (lp_syslog() > 0) {
-               syslog(audit_syslog_priority(handle), "rmdir %s %s%s\n",
-                      smb_fname->base_name,
-                      (result < 0) ? "failed: " : "",
-                      (result < 0) ? strerror(errno) : "");
-       }
-       DEBUG(0, ("vfs_extd_audit: rmdir %s %s %s\n",
-               smb_fname->base_name,
-              (result < 0) ? "failed: " : "",
-              (result < 0) ? strerror(errno) : ""));
-
-       return result;
-}
-
 static int audit_open(vfs_handle_struct *handle,
                      struct smb_filename *smb_fname, files_struct *fsp,
                      int flags, mode_t mode)
 static int audit_open(vfs_handle_struct *handle,
                      struct smb_filename *smb_fname, files_struct *fsp,
                      int flags, mode_t mode)
@@ -403,7 +382,6 @@ static struct vfs_fn_pointers vfs_extd_audit_fns = {
        .disconnect_fn = audit_disconnect,
        .opendir_fn = audit_opendir,
        .mkdirat_fn = audit_mkdirat,
        .disconnect_fn = audit_disconnect,
        .opendir_fn = audit_opendir,
        .mkdirat_fn = audit_mkdirat,
-       .rmdir_fn = audit_rmdir,
        .open_fn = audit_open,
        .close_fn = audit_close,
        .renameat_fn = audit_renameat,
        .open_fn = audit_open,
        .close_fn = audit_close,
        .renameat_fn = audit_renameat,