summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2009-10-16 18:13:06 -0700
committerJeremy Allison <jra@samba.org>2009-10-16 18:13:06 -0700
commitf1d9960284b3087189f2140274ae2c9da9609060 (patch)
tree07ec06f3af083755212c209a58482a7a7b07c707
parentea3c077236c8ffcf3d258a2b472c6348f2910638 (diff)
downloadsamba-f1d9960284b3087189f2140274ae2c9da9609060.tar.gz
samba-f1d9960284b3087189f2140274ae2c9da9609060.tar.bz2
samba-f1d9960284b3087189f2140274ae2c9da9609060.zip
Add comment explaining about symlink following & posix.
Jeremy.
-rw-r--r--source3/modules/vfs_streams_xattr.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/modules/vfs_streams_xattr.c b/source3/modules/vfs_streams_xattr.c
index b68fa02a35..d7c0a834c0 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);
}