From 5765d73f72e25f53bd899e17c5ebd6a3aada1686 Mon Sep 17 00:00:00 2001 From: Christof Schmitt Date: Fri, 31 Aug 2012 10:33:57 -0700 Subject: [PATCH] s3:vfs/time_audit: Add back pointer for sys_acl_delete_def_file_fn Commit e25830dcd87387a237b96f0d70deb204a5bf0a54 removed the function pointer from the time_audit module, although the VFS function still exists. Add the function pointer again in time_audit as this seems to be an accidentally deletion. Signed-off-by: Christian Ambach --- source3/modules/vfs_time_audit.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source3/modules/vfs_time_audit.c b/source3/modules/vfs_time_audit.c index c5ad9961ba1..c80fc8a0c30 100644 --- a/source3/modules/vfs_time_audit.c +++ b/source3/modules/vfs_time_audit.c @@ -2137,6 +2137,7 @@ static struct vfs_fn_pointers vfs_time_audit_fns = { .sys_acl_get_fd_fn = smb_time_audit_sys_acl_get_fd, .sys_acl_set_file_fn = smb_time_audit_sys_acl_set_file, .sys_acl_set_fd_fn = smb_time_audit_sys_acl_set_fd, + .sys_acl_delete_def_file_fn = smb_time_audit_sys_acl_delete_def_file, .getxattr_fn = smb_time_audit_getxattr, .fgetxattr_fn = smb_time_audit_fgetxattr, .listxattr_fn = smb_time_audit_listxattr, -- 2.34.1