summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-10-08 03:39:17 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-10-08 03:39:17 +0200
commit717ef3867a22a5f7427a04083da6cc0b50353bd2 (patch)
treeaa7a2470c56e988f2403e84bf95d1e6ddd87f882 /examples
parentf8a02a1a804fdb8640989595e2b57df86281c0f7 (diff)
parent859facda89ff3589e87c4cbe1708578769d7c535 (diff)
downloadsamba-717ef3867a22a5f7427a04083da6cc0b50353bd2.tar.gz
samba-717ef3867a22a5f7427a04083da6cc0b50353bd2.tar.bz2
samba-717ef3867a22a5f7427a04083da6cc0b50353bd2.zip
Merge branch 'master' of ssh://git.samba.org/data/git/samba
Diffstat (limited to 'examples')
-rw-r--r--examples/VFS/skel_opaque.c2
-rw-r--r--examples/VFS/skel_transparent.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/VFS/skel_opaque.c b/examples/VFS/skel_opaque.c
index 89d8ce5239..3df1fcd5bf 100644
--- a/examples/VFS/skel_opaque.c
+++ b/examples/VFS/skel_opaque.c
@@ -315,7 +315,7 @@ static size_t skel_get_nt_acl(vfs_handle_struct *handle,
}
static NTSTATUS skel_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
- uint32 security_info_sent, SEC_DESC *psd)
+ uint32 security_info_sent, const SEC_DESC *psd)
{
errno = ENOSYS;
return NT_STATUS_NOT_IMPLEMENTED;
diff --git a/examples/VFS/skel_transparent.c b/examples/VFS/skel_transparent.c
index ea8530d855..e6dee97775 100644
--- a/examples/VFS/skel_transparent.c
+++ b/examples/VFS/skel_transparent.c
@@ -302,7 +302,7 @@ static NTSTATUS skel_get_nt_acl(vfs_handle_struct *handle,
}
static NTSTATUS skel_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
- uint32 security_info_sent, SEC_DESC *psd)
+ uint32 security_info_sent, const SEC_DESC *psd)
{
return SMB_VFS_NEXT_FSET_NT_ACL(handle, fsp, security_info_sent, psd);
}