From ce791d6645ece67c068079de71a0c96ad28c17b7 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 1 Oct 2009 16:54:06 -0700 Subject: Fix bug #6769 - symlink unlink does nothing. Always use LSTAT for POSIX pathnames. Jeremy. --- source3/modules/vfs_default.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'source3/modules/vfs_default.c') diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index c92bc8ec21..680eb1205b 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -1231,7 +1231,11 @@ static NTSTATUS vfswrap_streaminfo(vfs_handle_struct *handle, if (!NT_STATUS_IS_OK(status)) { return status; } - ret = SMB_VFS_STAT(handle->conn, smb_fname); + if (lp_posix_pathnames()) { + ret = SMB_VFS_LSTAT(handle->conn, smb_fname); + } else { + ret = SMB_VFS_STAT(handle->conn, smb_fname); + } sbuf = smb_fname->st; TALLOC_FREE(smb_fname); } -- cgit