[SCM] Samba Shared Repository - branch v3-4-test updated - release-4-0-0alpha7-589-g5e77abe

Jeremy Allison jra at samba.org
Thu Mar 26 22:35:41 GMT 2009


The branch, v3-4-test has been updated
       via  5e77abe108bab07c04f5c7186b63a4c0fef59721 (commit)
      from  21c76accc3cde979844eb622d7a9bafe1d02d9be (commit)

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


- Log -----------------------------------------------------------------
commit 5e77abe108bab07c04f5c7186b63a4c0fef59721
Author: Jeremy Allison <jra at samba.org>
Date:   Thu Mar 26 15:30:42 2009 -0700

    Try and fix the build farm RAW-STREAMS errors. Ordering of
    modules shouldn't matter, so as vfs_streams_depot doesn't
    implement get/setxattrs then call into the full VFS stack
    at the top.
    Jeremy

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

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


Changeset truncated at 500 lines:

diff --git a/source3/modules/vfs_streams_depot.c b/source3/modules/vfs_streams_depot.c
index 023d2b9..e5a70b1 100644
--- a/source3/modules/vfs_streams_depot.c
+++ b/source3/modules/vfs_streams_depot.c
@@ -78,7 +78,7 @@ static bool file_is_valid(vfs_handle_struct *handle, const char *path,
 
 	DEBUG(10, ("file_is_valid (%s) called\n", path));
 
-	if (SMB_VFS_NEXT_GETXATTR(handle, path, SAMBA_XATTR_MARKER,
+	if (SMB_VFS_GETXATTR(handle->conn, path, SAMBA_XATTR_MARKER,
 				  &buf, sizeof(buf)) != sizeof(buf)) {
 		DEBUG(10, ("GETXATTR failed: %s\n", strerror(errno)));
 		return false;
@@ -104,7 +104,7 @@ static bool mark_file_valid(vfs_handle_struct *handle, const char *path,
 
 	DEBUG(10, ("marking file %s as valid\n", path));
 
-	ret = SMB_VFS_NEXT_SETXATTR(handle, path, SAMBA_XATTR_MARKER,
+	ret = SMB_VFS_SETXATTR(handle->conn, path, SAMBA_XATTR_MARKER,
 				    &buf, sizeof(buf), 0);
 
 	if (ret == -1) {


-- 
Samba Shared Repository


More information about the samba-cvs mailing list