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/services/services_db.c

    r206 r221  
    9292        size_t i = 0;
    9393        SEC_DESC *sd = NULL;
    94         SEC_ACL *acl = NULL;
     94        SEC_ACL *theacl = NULL;
    9595        size_t sd_size;
    9696
     
    110110        /* create the security descriptor */
    111111
    112         if ( !(acl = make_sec_acl(ctx, NT4_ACL_REVISION, i, ace)) )
     112        if ( !(theacl = make_sec_acl(ctx, NT4_ACL_REVISION, i, ace)) )
    113113                return NULL;
    114114
    115115        if ( !(sd = make_sec_desc(ctx, SECURITY_DESCRIPTOR_REVISION_1,
    116116                                  SEC_DESC_SELF_RELATIVE, NULL, NULL, NULL,
    117                                   acl, &sd_size)) )
     117                                  theacl, &sd_size)) )
    118118                return NULL;
    119119
Note: See TracChangeset for help on using the changeset viewer.