Ignore:
Timestamp:
Nov 29, 2012, 1:59:04 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: updated trunk to 3.6.9

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/server/source3/rpc_server/srvsvc/srv_srvsvc_nt.c

    r745 r751  
    23192319        security_info_sent = r->in.securityinformation;
    23202320
    2321         if (psd->owner_sid==0) {
    2322                 security_info_sent &= ~SECINFO_OWNER;
    2323         }
    2324         if (psd->group_sid==0) {
    2325                 security_info_sent &= ~SECINFO_GROUP;
    2326         }
    2327         if (psd->sacl==0) {
    2328                 security_info_sent &= ~SECINFO_SACL;
    2329         }
    2330         if (psd->dacl==0) {
    2331                 security_info_sent &= ~SECINFO_DACL;
    2332         }
    2333 
    2334         /* Convert all the generic bits. */
    2335         security_acl_map_generic(psd->dacl, &file_generic_mapping);
    2336         security_acl_map_generic(psd->sacl, &file_generic_mapping);
    2337 
    2338         nt_status = SMB_VFS_FSET_NT_ACL(fsp,
    2339                                         security_info_sent,
    2340                                         psd);
     2321        nt_status = set_sd(fsp, psd, security_info_sent);
    23412322
    23422323        if (!NT_STATUS_IS_OK(nt_status) ) {
Note: See TracChangeset for help on using the changeset viewer.