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

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


The branch, v3-3-test has been updated
       via  a3b5093cb57a6212c913a6653ef180ec567f2142 (commit)
      from  e130087a9638ab3a479fc59f5f71bf4a3fe59c2d (commit)

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


- Log -----------------------------------------------------------------
commit a3b5093cb57a6212c913a6653ef180ec567f2142
Author: Stefan Metzmacher <metze at samba.org>
Date:   Mon Dec 1 14:27:15 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