From 328a6264a7b64dce9378bf9c9c2ab3aeb7d755c7 Mon Sep 17 00:00:00 2001 From: Björn Jacke Date: Sun, 7 Feb 2010 20:10:57 +0100 Subject: s3: fix build issue on Tru64 Thanks, Volker for the hint - acl_type is a macro on Tru64. Renamed it to acltype. This fixes #7103. --- source3/modules/vfs_acl_common.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'source3') diff --git a/source3/modules/vfs_acl_common.c b/source3/modules/vfs_acl_common.c index 30a59e2024..1f1e40343b 100644 --- a/source3/modules/vfs_acl_common.c +++ b/source3/modules/vfs_acl_common.c @@ -169,7 +169,7 @@ static void add_directory_inheritable_components(vfs_handle_struct *handle, struct connection_struct *conn = handle->conn; int num_aces = (psd->dacl ? psd->dacl->num_aces : 0); struct smb_filename smb_fname; - enum security_ace_type acl_type; + enum security_ace_type acltype; uint32_t access_mask; mode_t dir_mode; mode_t file_mode; @@ -203,30 +203,30 @@ static void add_directory_inheritable_components(vfs_handle_struct *handle, memcpy(new_ace_list, psd->dacl->aces, num_aces * sizeof(struct security_ace)); } - access_mask = map_canon_ace_perms(SNUM(conn), &acl_type, + access_mask = map_canon_ace_perms(SNUM(conn), &acltype, mode & 0700, false); init_sec_ace(&new_ace_list[num_aces], &global_sid_Creator_Owner, - acl_type, + acltype, access_mask, SEC_ACE_FLAG_CONTAINER_INHERIT| SEC_ACE_FLAG_OBJECT_INHERIT| SEC_ACE_FLAG_INHERIT_ONLY); - access_mask = map_canon_ace_perms(SNUM(conn), &acl_type, + access_mask = map_canon_ace_perms(SNUM(conn), &acltype, (mode << 3) & 0700, false); init_sec_ace(&new_ace_list[num_aces+1], &global_sid_Creator_Group, - acl_type, + acltype, access_mask, SEC_ACE_FLAG_CONTAINER_INHERIT| SEC_ACE_FLAG_OBJECT_INHERIT| SEC_ACE_FLAG_INHERIT_ONLY); - access_mask = map_canon_ace_perms(SNUM(conn), &acl_type, + access_mask = map_canon_ace_perms(SNUM(conn), &acltype, (mode << 6) & 0700, false); init_sec_ace(&new_ace_list[num_aces+2], &global_sid_World, - acl_type, + acltype, access_mask, SEC_ACE_FLAG_CONTAINER_INHERIT| SEC_ACE_FLAG_OBJECT_INHERIT| -- cgit