summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_aixacl2.c
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 /source3/modules/vfs_aixacl2.c
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 'source3/modules/vfs_aixacl2.c')
-rw-r--r--source3/modules/vfs_aixacl2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/vfs_aixacl2.c b/source3/modules/vfs_aixacl2.c
index 23c4d88134..a078b9f9f6 100644
--- a/source3/modules/vfs_aixacl2.c
+++ b/source3/modules/vfs_aixacl2.c
@@ -371,7 +371,7 @@ static bool aixjfs2_process_smbacl(files_struct *fsp, SMB4ACL_T *smbacl)
return True;
}
-static NTSTATUS aixjfs2_set_nt_acl_common(files_struct *fsp, uint32 security_info_sent, SEC_DESC *psd)
+static NTSTATUS aixjfs2_set_nt_acl_common(files_struct *fsp, uint32 security_info_sent, const SEC_DESC *psd)
{
acl_type_t acl_type_info;
NTSTATUS result = NT_STATUS_ACCESS_DENIED;
@@ -395,7 +395,7 @@ static NTSTATUS aixjfs2_set_nt_acl_common(files_struct *fsp, uint32 security_inf
return result;
}
-NTSTATUS aixjfs2_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp, uint32 security_info_sent, SEC_DESC *psd)
+NTSTATUS aixjfs2_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp, uint32 security_info_sent, const SEC_DESC *psd)
{
return aixjfs2_set_nt_acl_common(fsp, security_info_sent, psd);
}