Changeset 221 for branches/samba-3.3.x/source/services/services_db.c
- Timestamp:
- May 24, 2009, 7:17:10 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/services/services_db.c
r206 r221 92 92 size_t i = 0; 93 93 SEC_DESC *sd = NULL; 94 SEC_ACL * acl = NULL;94 SEC_ACL *theacl = NULL; 95 95 size_t sd_size; 96 96 … … 110 110 /* create the security descriptor */ 111 111 112 if ( !( acl = make_sec_acl(ctx, NT4_ACL_REVISION, i, ace)) )112 if ( !(theacl = make_sec_acl(ctx, NT4_ACL_REVISION, i, ace)) ) 113 113 return NULL; 114 114 115 115 if ( !(sd = make_sec_desc(ctx, SECURITY_DESCRIPTOR_REVISION_1, 116 116 SEC_DESC_SELF_RELATIVE, NULL, NULL, NULL, 117 acl, &sd_size)) )117 theacl, &sd_size)) ) 118 118 return NULL; 119 119
Note:
See TracChangeset
for help on using the changeset viewer.