[SCM] Samba Shared Repository - branch v3-6-test updated

Jeremy Allison jra at samba.org
Wed May 4 10:48:13 MDT 2011


The branch, v3-6-test has been updated
       via  cc153ab s3-vfs: make vfswrap_llistxattr and vfswrap_flistxattr static.
      from  55cad00 Always build before commit ... :-) (cherry picked from commit d4d3d7383a9e3c2c0910a848f33755ca54c32b99)

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


- Log -----------------------------------------------------------------
commit cc153ab9cbbc8c0e7328059272a7f287ea95a639
Author: Günther Deschner <gd at samba.org>
Date:   Tue May 3 21:42:04 2011 +0200

    s3-vfs: make vfswrap_llistxattr and vfswrap_flistxattr static.
    
    Guenther
    
    Autobuild-User: Günther Deschner <gd at samba.org>
    Autobuild-Date: Wed May  4 12:31:10 CEST 2011 on sn-devel-104
    (cherry picked from commit b8eaec6b666b1f0d3711540c492edd79cd02b1fe)

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

Summary of changes:
 source3/include/proto.h       |    6 ------
 source3/modules/vfs_default.c |    4 ++--
 2 files changed, 2 insertions(+), 8 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/include/proto.h b/source3/include/proto.h
index cfc075d..766c744 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -2213,12 +2213,6 @@ bool enumerate_domain_trusts( TALLOC_CTX *mem_ctx, const char *domain,
 				     struct dom_sid **sids );
 NTSTATUS change_trust_account_password( const char *domain, const char *remote_machine);
 
-/* The following definitions come from modules/vfs_default.c  */
-
-ssize_t vfswrap_llistxattr(struct vfs_handle_struct *handle, const char *path, char *list, size_t size);
-ssize_t vfswrap_flistxattr(struct vfs_handle_struct *handle, struct files_struct *fsp, char *list, size_t size);
-NTSTATUS vfs_default_init(void);
-
 /* The following definitions come from param/loadparm.c  */
 
 char *lp_smb_ports(void);
diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c
index cf6e24f..5d6b512 100644
--- a/source3/modules/vfs_default.c
+++ b/source3/modules/vfs_default.c
@@ -1512,12 +1512,12 @@ static ssize_t vfswrap_listxattr(struct vfs_handle_struct *handle, const char *p
 	return sys_listxattr(path, list, size);
 }
 
-ssize_t vfswrap_llistxattr(struct vfs_handle_struct *handle, const char *path, char *list, size_t size)
+static ssize_t vfswrap_llistxattr(struct vfs_handle_struct *handle, const char *path, char *list, size_t size)
 {
 	return sys_llistxattr(path, list, size);
 }
 
-ssize_t vfswrap_flistxattr(struct vfs_handle_struct *handle, struct files_struct *fsp, char *list, size_t size)
+static ssize_t vfswrap_flistxattr(struct vfs_handle_struct *handle, struct files_struct *fsp, char *list, size_t size)
 {
 	return sys_flistxattr(fsp->fh->fd, list, size);
 }


-- 
Samba Shared Repository


More information about the samba-cvs mailing list