From a9c981ec0be93f0072250ba6b92a53dc5636f422 Mon Sep 17 00:00:00 2001 From: Christian Ambach Date: Thu, 3 May 2012 18:32:06 +0200 Subject: [PATCH] s3:vfs fix compiler warning vfs_default.c:1875:10: warning: no previous prototype for 'vfswrap_audit_file' --- source3/include/vfs.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source3/include/vfs.h b/source3/include/vfs.h index b5f234ad094e..92f6ecd29d0a 100644 --- a/source3/include/vfs.h +++ b/source3/include/vfs.h @@ -749,6 +749,11 @@ NTSTATUS smb_vfs_call_fset_nt_acl(struct vfs_handle_struct *handle, struct files_struct *fsp, uint32 security_info_sent, const struct security_descriptor *psd); +NTSTATUS smb_vfs_call_audit_file(struct vfs_handle_struct *handle, + struct smb_filename *file, + struct security_acl *sacl, + uint32_t access_requested, + uint32_t access_denied); int smb_vfs_call_chmod_acl(struct vfs_handle_struct *handle, const char *name, mode_t mode); int smb_vfs_call_fchmod_acl(struct vfs_handle_struct *handle, -- 2.34.1