[SCM] Samba Shared Repository - branch master updated - 65169a43b321cd06d2f9474183ca8195c6182333

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


The branch, master has been updated
       via  65169a43b321cd06d2f9474183ca8195c6182333 (commit)
      from  a8004a4ef5713a2005ae6ead1d510f30080ecb6f (commit)

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


- Log -----------------------------------------------------------------
commit 65169a43b321cd06d2f9474183ca8195c6182333
Author: Stefan Metzmacher <metze at samba.org>
Date:   Mon Dec 1 14:26:58 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:
 source3/modules/vfs_streams_xattr.c |    2 +-
 1 files changed, 1 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 6530a18..ecfc319 100644
--- a/source3/modules/vfs_streams_xattr.c
+++ b/source3/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