Changeset 221 for branches/samba-3.3.x/source/utils/sharesec.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/utils/sharesec.c
r206 r221 294 294 SEC_DESC *sd = NULL; 295 295 SEC_ACE *ace; 296 SEC_ACL * acl;296 SEC_ACL *theacl; 297 297 int num_ace; 298 298 const char *pacl; … … 322 322 } 323 323 324 if ( !( acl = make_sec_acl( mem_ctx, NT4_ACL_REVISION, num_ace, ace )) )324 if ( !(theacl = make_sec_acl( mem_ctx, NT4_ACL_REVISION, num_ace, ace )) ) 325 325 return NULL; 326 326 327 327 sd = make_sec_desc( mem_ctx, SEC_DESC_REVISION, SEC_DESC_SELF_RELATIVE, 328 NULL, NULL, NULL, acl, sd_size);328 NULL, NULL, NULL, theacl, sd_size); 329 329 330 330 return sd;
Note:
See TracChangeset
for help on using the changeset viewer.