summaryrefslogtreecommitdiff
path: root/examples/VFS/skel_opaque.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2011-03-07 04:46:20 -0800
committerJeremy Allison <jra@samba.org>2011-03-07 15:11:25 +0100
commitb12fbc22aca6ae9ae0c216cf5b0c7fea374d4e6d (patch)
tree3b7f8dc39f1f29cce3ef720da1ff253e74488108 /examples/VFS/skel_opaque.c
parent8bcae0009bbfa16cb8d9eaed8061bfdc86f51cc0 (diff)
downloadsamba-b12fbc22aca6ae9ae0c216cf5b0c7fea374d4e6d.tar.gz
samba-b12fbc22aca6ae9ae0c216cf5b0c7fea374d4e6d.tar.bz2
samba-b12fbc22aca6ae9ae0c216cf5b0c7fea374d4e6d.zip
Fix the examples/VFS build.
Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Mon Mar 7 15:11:25 CET 2011 on sn-devel-104
Diffstat (limited to 'examples/VFS/skel_opaque.c')
-rw-r--r--examples/VFS/skel_opaque.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/VFS/skel_opaque.c b/examples/VFS/skel_opaque.c
index c7350e2810..ef7c3afa42 100644
--- a/examples/VFS/skel_opaque.c
+++ b/examples/VFS/skel_opaque.c
@@ -477,19 +477,19 @@ static NTSTATUS skel_translate_name(struct vfs_handle_struct *handle,
}
static NTSTATUS skel_fget_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
- uint32 security_info, SEC_DESC **ppdesc)
+ uint32 security_info, struct security_descriptor **ppdesc)
{
return NT_STATUS_NOT_IMPLEMENTED;
}
static NTSTATUS skel_get_nt_acl(vfs_handle_struct *handle,
- const char *name, uint32 security_info, SEC_DESC **ppdesc)
+ const char *name, uint32 security_info, struct security_descriptor **ppdesc)
{
return NT_STATUS_NOT_IMPLEMENTED;
}
static NTSTATUS skel_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
- uint32 security_info_sent, const SEC_DESC *psd)
+ uint32 security_info_sent, const struct security_descriptor *psd)
{
return NT_STATUS_NOT_IMPLEMENTED;
}