diff options
author | Günther Deschner <gd@samba.org> | 2010-06-02 23:29:16 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-06-03 10:59:54 +0200 |
commit | e24a59f932897888cadae31469366663aca1a414 (patch) | |
tree | 3b8bf82f734b6c9126e86ca749df05205fadfb7c /source3/modules | |
parent | 630c27bdad32086f16dbafdeab94d34fbc3b9b5e (diff) | |
download | samba-e24a59f932897888cadae31469366663aca1a414.tar.gz samba-e24a59f932897888cadae31469366663aca1a414.tar.bz2 samba-e24a59f932897888cadae31469366663aca1a414.zip |
s3-security: use shared SECINFO_SACL define.
Guenther
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/onefs_acl.c | 10 | ||||
-rw-r--r-- | source3/modules/vfs_acl_common.c | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/source3/modules/onefs_acl.c b/source3/modules/onefs_acl.c index 51c6a233f9..4fa2e79c7b 100644 --- a/source3/modules/onefs_acl.c +++ b/source3/modules/onefs_acl.c @@ -629,7 +629,7 @@ onefs_fget_nt_acl(vfs_handle_struct *handle, files_struct *fsp, if (lp_parm_bool(SNUM(fsp->conn), PARM_ONEFS_TYPE, PARM_IGNORE_SACLS, PARM_IGNORE_SACLS_DEFAULT)) { DEBUG(5, ("Ignoring SACL on %s.\n", fsp_str_dbg(fsp))); - security_info &= ~SACL_SECURITY_INFORMATION; + security_info &= ~SECINFO_SACL; } if (fsp->fh->fd == -1) { @@ -733,7 +733,7 @@ onefs_fget_nt_acl(vfs_handle_struct *handle, files_struct *fsp, } /* Copy SACL into ppdesc */ - if (security_info & SACL_SECURITY_INFORMATION) { + if (security_info & SECINFO_SACL) { if (!onefs_acl_to_samba_acl(sd->sacl, &sacl)) { status = NT_STATUS_INVALID_PARAMETER; goto out; @@ -870,12 +870,12 @@ NTSTATUS onefs_samba_sd_to_sd(uint32_t security_info_sent, } /* Setup SACL */ - if (security_info_sent & SACL_SECURITY_INFORMATION) { + if (security_info_sent & SECINFO_SACL) { if (lp_parm_bool(snum, PARM_ONEFS_TYPE, PARM_IGNORE_SACLS, PARM_IGNORE_SACLS_DEFAULT)) { DEBUG(5, ("Ignoring SACL.\n")); - *security_info_effective &= ~SACL_SECURITY_INFORMATION; + *security_info_effective &= ~SECINFO_SACL; } else { if (psd->sacl) { if (!onefs_samba_acl_to_acl(psd->sacl, @@ -884,7 +884,7 @@ NTSTATUS onefs_samba_sd_to_sd(uint32_t security_info_sent, if (ignore_aces == true) { *security_info_effective &= - ~SACL_SECURITY_INFORMATION; + ~SECINFO_SACL; } } } diff --git a/source3/modules/vfs_acl_common.c b/source3/modules/vfs_acl_common.c index 08b4fbaf4d..59aa70310f 100644 --- a/source3/modules/vfs_acl_common.c +++ b/source3/modules/vfs_acl_common.c @@ -39,7 +39,7 @@ static NTSTATUS store_acl_blob_fsp(vfs_handle_struct *handle, #define HASH_SECURITY_INFO (SECINFO_OWNER | \ SECINFO_GROUP | \ DACL_SECURITY_INFORMATION | \ - SACL_SECURITY_INFORMATION) + SECINFO_SACL) /******************************************************************* Hash a security descriptor. @@ -380,7 +380,7 @@ static NTSTATUS get_nt_acl_internal(vfs_handle_struct *handle, if (!(security_info & DACL_SECURITY_INFORMATION)) { psd->dacl = NULL; } - if (!(security_info & SACL_SECURITY_INFORMATION)) { + if (!(security_info & SECINFO_SACL)) { psd->sacl = NULL; } |