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/modules/nfs4_acls.c

    r745 r751  
    336336                      ace->aceFlags, win_ace_flags));
    337337
     338                mask = ace->aceMask;
    338339                /* Windows clients expect SYNC on acls to
    339340                   correctly allow rename. See bug #7909. */
    340                 mask = ace->aceMask | SMB_ACE4_SYNCHRONIZE;
     341                /* But not on DENY ace entries. See
     342                   bug #8442. */
     343                if(ace->aceType == SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE) {
     344                        mask = ace->aceMask | SMB_ACE4_SYNCHRONIZE;
     345                }
    341346                init_sec_ace(&nt_ace_list[good_aces++], &sid,
    342347                        ace->aceType, mask,
Note: See TracChangeset for help on using the changeset viewer.