Ignore:
Timestamp:
Oct 30, 2009, 9:39:05 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update 3.3 to 3.3.9

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.3.x/source/modules/vfs_default.c

    r221 r342  
    994994        }
    995995        else {
    996                 ret = SMB_VFS_STAT(handle->conn, fname, &sbuf);
     996                if (lp_posix_pathnames()) {
     997                        ret = SMB_VFS_LSTAT(handle->conn, fname, &sbuf);
     998                } else {
     999                        ret = SMB_VFS_STAT(handle->conn, fname, &sbuf);
     1000                }
    9971001        }
    9981002
Note: See TracChangeset for help on using the changeset viewer.