summaryrefslogtreecommitdiff
path: root/acls.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2007-10-05 02:45:09 +0000
committerWayne Davison <wayned@samba.org>2007-10-05 02:45:09 +0000
commit6be5ac61bd2b4d4bdb77c26d3e8e2729a2433668 (patch)
treed291c605fcf48e32b2c0e3f38f1aa7c31661160e /acls.c
parent90c71caeb3c0132e8ce0213c7a4fc2e69acdc926 (diff)
downloadrsync-6be5ac61bd2b4d4bdb77c26d3e8e2729a2433668.tar.gz
Simplified a SMB_ACL_NEED_SORT conditional because some preprocessors
couldn't handle an #if embedded in a macro.
Diffstat (limited to 'acls.c')
-rw-r--r--acls.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/acls.c b/acls.c
index 4fc46d3f..6cbd80ab 100644
--- a/acls.c
+++ b/acls.c
@@ -390,13 +390,10 @@ static BOOL pack_smb_acl(SMB_ACL_T *smb_acl, const rsync_acl *racl)
break;
#endif
COE( sys_acl_create_entry,(smb_acl, &entry) );
- COE( sys_acl_set_info,(entry,
-#ifdef SMB_ACL_NEED_SORT
- SMB_ACL_USER,
-#else
- ida->access & NAME_IS_USER ? SMB_ACL_USER : SMB_ACL_GROUP,
-#endif
- ida->access & ~NAME_IS_USER, ida->id) );
+ COE( sys_acl_set_info,
+ (entry,
+ ida->access & NAME_IS_USER ? SMB_ACL_USER : SMB_ACL_GROUP,
+ ida->access & ~NAME_IS_USER, ida->id) );
}
#ifndef HAVE_OSX_ACLS