Ignore:
Timestamp:
Nov 12, 2012, 5:38:52 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server 3.5: update branche to 3.5.16

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.5.x/source3/smbd/open.c

    r733 r736  
    22972297        SMB_ASSERT(!is_ntfs_stream_smb_fname(smb_dname));
    22982298
    2299         /* Ensure we have a directory attribute. */
    2300         file_attributes |= FILE_ATTRIBUTE_DIRECTORY;
     2299        if (!(file_attributes & FILE_FLAG_POSIX_SEMANTICS)) {
     2300                /* Ensure we have a directory attribute. */
     2301                file_attributes |= FILE_ATTRIBUTE_DIRECTORY;
     2302        }
    23012303
    23022304        DEBUG(5,("open_directory: opening directory %s, access_mask = 0x%x, "
Note: See TracChangeset for help on using the changeset viewer.