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/utils/sharesec.c

    r206 r221  
    294294        SEC_DESC *sd = NULL;
    295295        SEC_ACE *ace;
    296         SEC_ACL *acl;
     296        SEC_ACL *theacl;
    297297        int num_ace;
    298298        const char *pacl;
     
    322322        }
    323323       
    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 )) )
    325325                return NULL;
    326326               
    327327        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);
    329329
    330330        return sd;
Note: See TracChangeset for help on using the changeset viewer.