[SCM] Samba Shared Repository - branch v3-2-test updated - release-3-2-0pre2-3218-g84e8fcd

Jeremy Allison jra at samba.org
Mon Dec 1 22:27:08 GMT 2008


The branch, v3-2-test has been updated
       via  84e8fcd6703d57678c1ac7e5df67c03a626c0e6f (commit)
      from  67788371cef51009295d1f85daf7f0328225f1f9 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-2-test


- Log -----------------------------------------------------------------
commit 84e8fcd6703d57678c1ac7e5df67c03a626c0e6f
Author: Stefan Metzmacher <metze at samba.org>
Date:   Mon Dec 1 14:26:36 2008 -0800

    s3:streams_xattr: fstat should do a stat on the base file
    
    The behavior of stat and fstat should be the same.
    
    metze

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

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


Changeset truncated at 500 lines:

diff --git a/source/modules/vfs_streams_xattr.c b/source/modules/vfs_streams_xattr.c
index 6530a18..ecfc319 100644
--- a/source/modules/vfs_streams_xattr.c
+++ b/source/modules/vfs_streams_xattr.c
@@ -148,7 +148,7 @@ static int streams_xattr_fstat(vfs_handle_struct *handle, files_struct *fsp,
 		return -1;
 	}
 
-	if (SMB_VFS_NEXT_FSTAT(handle, fsp, sbuf) == -1) {
+	if (SMB_VFS_STAT(handle->conn, io->base, sbuf) == -1) {
 		return -1;
 	}
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list