From 4fcd20cd6bfc646f4ee9319aae0bf6306f1c1a7c Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 4 Oct 2019 15:22:19 -0700 Subject: [PATCH] s3: VFS: vfs_time_audit: Remove rmdir_fn(). No longer used. Signed-off-by: Jeremy Allison Reviewed-by: Ralph Boehme --- source3/modules/vfs_time_audit.c | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/source3/modules/vfs_time_audit.c b/source3/modules/vfs_time_audit.c index 7fa6161945a..871823f5c15 100644 --- a/source3/modules/vfs_time_audit.c +++ b/source3/modules/vfs_time_audit.c @@ -531,27 +531,6 @@ static int smb_time_audit_mkdirat(vfs_handle_struct *handle, return result; } -static int smb_time_audit_rmdir(vfs_handle_struct *handle, - const struct smb_filename *smb_fname) -{ - int result; - struct timespec ts1,ts2; - double timediff; - - clock_gettime_mono(&ts1); - result = SMB_VFS_NEXT_RMDIR(handle, smb_fname); - clock_gettime_mono(&ts2); - timediff = nsec_time_diff(&ts2,&ts1)*1.0e-9; - - if (timediff > audit_timeout) { - smb_time_audit_log_smb_fname("rmdir", - timediff, - smb_fname); - } - - return result; -} - static int smb_time_audit_closedir(vfs_handle_struct *handle, DIR *dirp) { @@ -2857,7 +2836,6 @@ static struct vfs_fn_pointers vfs_time_audit_fns = { .telldir_fn = smb_time_audit_telldir, .rewind_dir_fn = smb_time_audit_rewinddir, .mkdirat_fn = smb_time_audit_mkdirat, - .rmdir_fn = smb_time_audit_rmdir, .closedir_fn = smb_time_audit_closedir, .open_fn = smb_time_audit_open, .create_file_fn = smb_time_audit_create_file, -- 2.47.3