diff options
author | Andreas Schneider <asn@samba.org> | 2010-06-30 10:39:43 +0200 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2010-07-27 10:27:15 -0400 |
commit | c3186f22c5d501cc6afed7556579906d27763251 (patch) | |
tree | d1a1ea4d6c799377529551ea588227536963ef2b /source3/include/proto.h | |
parent | 1be454538b2e4d242be90e43fab9eb09f0b07a57 (diff) | |
download | samba-c3186f22c5d501cc6afed7556579906d27763251.tar.gz samba-c3186f22c5d501cc6afed7556579906d27763251.tar.bz2 samba-c3186f22c5d501cc6afed7556579906d27763251.zip |
s3-lib: Make the standard_mapping parameter const.
Signed-off-by: Jim McDonough <jmcd@samba.org>
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 80adacdb27..8dbe758e20 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1339,7 +1339,7 @@ bool pull_reg_multi_sz(TALLOC_CTX *mem_ctx, const DATA_BLOB *blob, const char ** void se_map_generic(uint32 *access_mask, const struct generic_mapping *mapping); void security_acl_map_generic(struct security_acl *sa, const struct generic_mapping *mapping); -void se_map_standard(uint32 *access_mask, struct standard_mapping *mapping); +void se_map_standard(uint32 *access_mask, const struct standard_mapping *mapping); NTSTATUS se_access_check(const struct security_descriptor *sd, const NT_USER_TOKEN *token, uint32 acc_desired, uint32 *acc_granted); |