[SCM] Samba Shared Repository - branch master updated

Jeremy Allison jra at samba.org
Fri Oct 16 19:26:28 MDT 2009


The branch, master has been updated
       via  f1d9960... Add comment explaining about symlink following & posix. Jeremy.
      from  ea3c077... Last 2 VFS_STAT -> LSTAT fixes I can see in the modules code. Jeremy.

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


- Log -----------------------------------------------------------------
commit f1d9960284b3087189f2140274ae2c9da9609060
Author: Jeremy Allison <jra at samba.org>
Date:   Fri Oct 16 18:13:06 2009 -0700

    Add comment explaining about symlink following & posix.
    Jeremy.

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

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


Changeset truncated at 500 lines:

diff --git a/source3/modules/vfs_streams_xattr.c b/source3/modules/vfs_streams_xattr.c
index b68fa02..d7c0a83 100644
--- a/source3/modules/vfs_streams_xattr.c
+++ b/source3/modules/vfs_streams_xattr.c
@@ -253,6 +253,11 @@ static int streams_xattr_stat(vfs_handle_struct *handle,
 		return SMB_VFS_NEXT_STAT(handle, smb_fname);
 	}
 
+	/* Note if lp_posix_paths() is true, we can never
+	 * get here as is_ntfs_stream_smb_fname() is
+	 * always false. So we never need worry about
+	 * not following links here. */
+
 	/* If the default stream is requested, just stat the base file. */
 	if (is_ntfs_default_stream_smb_fname(smb_fname)) {
 		return streams_xattr_stat_base(handle, smb_fname, true);
@@ -304,7 +309,7 @@ static int streams_xattr_lstat(vfs_handle_struct *handle,
 		return SMB_VFS_NEXT_LSTAT(handle, smb_fname);
 	}
 
-		/* If the default stream is requested, just stat the base file. */
+	/* If the default stream is requested, just stat the base file. */
 	if (is_ntfs_default_stream_smb_fname(smb_fname)) {
 		return streams_xattr_stat_base(handle, smb_fname, false);
 	}


-- 
Samba Shared Repository


More information about the samba-cvs mailing list