[SCM] Samba Shared Repository - branch master updated - tevent-0-9-8-861-gce791d6

Jeremy Allison jra at samba.org
Thu Oct 1 17:55:08 MDT 2009


The branch, master has been updated
       via  ce791d6645ece67c068079de71a0c96ad28c17b7 (commit)
      from  c38c99af91baf4a130917f1a0eb399879ae5708f (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit ce791d6645ece67c068079de71a0c96ad28c17b7
Author: Jeremy Allison <jra at samba.org>
Date:   Thu Oct 1 16:54:06 2009 -0700

    Fix bug #6769 - symlink unlink does nothing.
    Always use LSTAT for POSIX pathnames.
    Jeremy.

-----------------------------------------------------------------------

Summary of changes:
 source3/modules/vfs_default.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c
index c92bc8e..680eb12 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);
 	}


-- 
Samba Shared Repository


More information about the samba-cvs mailing list