summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2008-08-14 11:00:47 -0700
committerKarolin Seeger <kseeger@samba.org>2008-08-15 08:13:48 +0200
commit3bb258764a6199603b66f1b6876cc0a23d332b40 (patch)
tree90f16df5ab461eeaf1a2c869d28a4c5d920ba2c0 /examples
parent086f97a6c7c1d96c6067695c8d0b675d21d61b84 (diff)
downloadsamba-3bb258764a6199603b66f1b6876cc0a23d332b40.tar.gz
Fix bug #5692 - Core dump in full_audit.so.
There were some function mismatches in the various GET_NT_ACL modules (some places the fsp parameter has not been removed). Jeremy. (cherry picked from commit 12b4ed7c3c10a6a29d108f6a83d961bf19751ca7)
Diffstat (limited to 'examples')
-rw-r--r--examples/VFS/skel_opaque.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/VFS/skel_opaque.c b/examples/VFS/skel_opaque.c
index eb49f35c042..ee9ae1d7fd5 100644
--- a/examples/VFS/skel_opaque.c
+++ b/examples/VFS/skel_opaque.c
@@ -307,7 +307,7 @@ static size_t skel_fget_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
return 0;
}
-static size_t skel_get_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
+static size_t skel_get_nt_acl(vfs_handle_struct *handle,
const char *name, uint32 security_info, SEC_DESC **ppdesc)
{
errno = ENOSYS;