From: Jeremy Allison Date: Fri, 10 Apr 2020 20:27:18 +0000 (-0700) Subject: s3: VFS: full_audit. Add missing fcntl entry in vfs_op_names[] array. X-Git-Tag: ldb-2.2.0~923 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=977d3c7bab3319725abc418839d581489fd9bbe9;p=thirdparty%2Fsamba.git s3: VFS: full_audit. Add missing fcntl entry in vfs_op_names[] array. Found by yannick@in2ip.nl. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14343 Signed-off-by: Jeremy Allison Reviewed-by: Volker Lendecke --- diff --git a/source3/modules/vfs_full_audit.c b/source3/modules/vfs_full_audit.c index 1ea58a0ffab..f8eef6eb1df 100644 --- a/source3/modules/vfs_full_audit.c +++ b/source3/modules/vfs_full_audit.c @@ -293,6 +293,7 @@ static struct { { SMB_VFS_OP_FALLOCATE,"fallocate" }, { SMB_VFS_OP_LOCK, "lock" }, { SMB_VFS_OP_KERNEL_FLOCK, "kernel_flock" }, + { SMB_VFS_OP_FCNTL, "fcntl" }, { SMB_VFS_OP_LINUX_SETLEASE, "linux_setlease" }, { SMB_VFS_OP_GETLOCK, "getlock" }, { SMB_VFS_OP_SYMLINKAT, "symlinkat" },