Ignore:
Timestamp:
May 24, 2009, 7:17:10 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update Samba 3.3 to 3.3.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.3.x/source/registry/reg_dispatcher.c

    r206 r221  
    4040        size_t i = 0;
    4141        SEC_DESC *sd;
    42         SEC_ACL *acl;
     42        SEC_ACL *theacl;
    4343        size_t sd_size;
    4444
     
    6060        /* create the security descriptor */
    6161
    62         acl = make_sec_acl(ctx, NT4_ACL_REVISION, i, ace);
    63         if (acl == NULL) {
     62        theacl = make_sec_acl(ctx, NT4_ACL_REVISION, i, ace);
     63        if (theacl == NULL) {
    6464                return WERR_NOMEM;
    6565        }
     
    6767        sd = make_sec_desc(ctx, SEC_DESC_REVISION, SEC_DESC_SELF_RELATIVE,
    6868                           &global_sid_Builtin_Administrators,
    69                            &global_sid_System, NULL, acl,
     69                           &global_sid_System, NULL, theacl,
    7070                           &sd_size);
    7171        if (sd == NULL) {
Note: See TracChangeset for help on using the changeset viewer.