From: Christof Schmitt Date: Mon, 20 Sep 2021 22:22:50 +0000 (-0700) Subject: vfs_time_audit: Fix message for fcntl VFS call X-Git-Tag: ldb-2.5.0~610 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=272fce3cbd5114c190570e4565f8e2f7b16ea3d4;p=thirdparty%2Fsamba.git vfs_time_audit: Fix message for fcntl VFS call Signed-off-by: Christof Schmitt Reviewed-by: Jeremy Allison --- diff --git a/source3/modules/vfs_time_audit.c b/source3/modules/vfs_time_audit.c index c0cb1b38bb2..126cf5ba69b 100644 --- a/source3/modules/vfs_time_audit.c +++ b/source3/modules/vfs_time_audit.c @@ -1392,7 +1392,7 @@ static int smb_time_audit_fcntl(struct vfs_handle_struct *handle, timediff = nsec_time_diff(&ts2,&ts1)*1.0e-9; if (timediff > audit_timeout) { - smb_time_audit_log_fsp("kernel_flock", timediff, fsp); + smb_time_audit_log_fsp("fcntl", timediff, fsp); } return result;