diff options
author | Jeremy Allison <jra@samba.org> | 2009-10-02 11:07:17 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-10-02 11:07:17 -0700 |
commit | 1cebf2dad1ddd42be9284aa38888c99847fec3b5 (patch) | |
tree | 7be8bfcebda45faa9ef3f332e694e57edfd8f45c | |
parent | 1e322cf6a9e56d26bef1532b97b4a3f84d93f6af (diff) | |
download | samba-1cebf2dad1ddd42be9284aa38888c99847fec3b5.tar.gz samba-1cebf2dad1ddd42be9284aa38888c99847fec3b5.tar.bz2 samba-1cebf2dad1ddd42be9284aa38888c99847fec3b5.zip |
Missed one VFS_STAT -> VFS_LSTAT
Jeremy.
-rw-r--r-- | source3/smbd/posix_acls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/posix_acls.c b/source3/smbd/posix_acls.c index e289e51408..6b5a9af45b 100644 --- a/source3/smbd/posix_acls.c +++ b/source3/smbd/posix_acls.c @@ -3494,7 +3494,7 @@ int try_chown(connection_struct *conn, struct smb_filename *smb_fname, } if (lp_posix_pathnames()) { - ret = SMB_VFS_STAT(conn, smb_fname); + ret = SMB_VFS_LSTAT(conn, smb_fname); } else { ret = SMB_VFS_STAT(conn, smb_fname); } |