From: Jeremy Allison Date: Wed, 21 Aug 2019 21:38:03 +0000 (-0700) Subject: s3: VFS: Remove extraneous enum/struct values for removed SMB_VFS_OP_LINK. X-Git-Tag: tevent-0.10.1~216 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c68671bb949159de77170d8b73883171c50c9d96;p=thirdparty%2Fsamba.git s3: VFS: Remove extraneous enum/struct values for removed SMB_VFS_OP_LINK. Forgot this in removal of SMB_VFS_LINK() patch previously pushed. Signed-off-by: Jeremy Allison Reviewed-by: Ralph Böhme --- diff --git a/source3/modules/vfs_full_audit.c b/source3/modules/vfs_full_audit.c index 836d4de8b4e..9ea9c01a306 100644 --- a/source3/modules/vfs_full_audit.c +++ b/source3/modules/vfs_full_audit.c @@ -153,7 +153,6 @@ typedef enum _vfs_op_type { SMB_VFS_OP_GETLOCK, SMB_VFS_OP_SYMLINK, SMB_VFS_OP_READLINK, - SMB_VFS_OP_LINK, SMB_VFS_OP_LINKAT, SMB_VFS_OP_MKNOD, SMB_VFS_OP_REALPATH, @@ -297,7 +296,6 @@ static struct { { SMB_VFS_OP_GETLOCK, "getlock" }, { SMB_VFS_OP_SYMLINK, "symlink" }, { SMB_VFS_OP_READLINK, "readlink" }, - { SMB_VFS_OP_LINK, "link" }, { SMB_VFS_OP_LINKAT, "linkat" }, { SMB_VFS_OP_MKNOD, "mknod" }, { SMB_VFS_OP_REALPATH, "realpath" },