The branch, master has been updated
       via  bdff459 s3: Fix some warnings in the zfsacl module
      from  61b2ac9 s3: Avoid a ton of registry writes at startup

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


- Log -----------------------------------------------------------------
commit bdff4591ca80b0589954e812d8fe498038c87837
Author: Volker Lendecke <[email protected]>
Date:   Thu Jan 6 17:09:56 2011 +0100

    s3: Fix some warnings in the zfsacl module
    
    Autobuild-User: Volker Lendecke <[email protected]>
    Autobuild-Date: Sat Jan  8 13:42:20 CET 2011 on sn-devel-104

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

Summary of changes:
 source3/modules/vfs_zfsacl.c |   30 +++++++++++++++---------------
 1 files changed, 15 insertions(+), 15 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/modules/vfs_zfsacl.c b/source3/modules/vfs_zfsacl.c
index 4c11f09..98c9bcf 100644
--- a/source3/modules/vfs_zfsacl.c
+++ b/source3/modules/vfs_zfsacl.c
@@ -254,36 +254,36 @@ static NTSTATUS zfsacl_fset_nt_acl(vfs_handle_struct 
*handle,
    Function declarations taken from vfs_solarisacl
 */
 
-SMB_ACL_T zfsacl_fail__sys_acl_get_file(vfs_handle_struct *handle,
-                                       const char *path_p,
-                                       SMB_ACL_TYPE_T type)
+static SMB_ACL_T zfsacl_fail__sys_acl_get_file(vfs_handle_struct *handle,
+                                              const char *path_p,
+                                              SMB_ACL_TYPE_T type)
 {
        return (SMB_ACL_T)NULL;
 }
-SMB_ACL_T zfsacl_fail__sys_acl_get_fd(vfs_handle_struct *handle,
-                                     files_struct *fsp,
-                                     int fd)
+
+static SMB_ACL_T zfsacl_fail__sys_acl_get_fd(vfs_handle_struct *handle,
+                                            files_struct *fsp)
 {
        return (SMB_ACL_T)NULL;
 }
 
-int zfsacl_fail__sys_acl_set_file(vfs_handle_struct *handle,
-                                 const char *name,
-                                 SMB_ACL_TYPE_T type,
-                                 SMB_ACL_T theacl)
+static int zfsacl_fail__sys_acl_set_file(vfs_handle_struct *handle,
+                                        const char *name,
+                                        SMB_ACL_TYPE_T type,
+                                        SMB_ACL_T theacl)
 {
        return -1;
 }
 
-int zfsacl_fail__sys_acl_set_fd(vfs_handle_struct *handle,
-                               files_struct *fsp,
-                               int fd, SMB_ACL_T theacl)
+static int zfsacl_fail__sys_acl_set_fd(vfs_handle_struct *handle,
+                                      files_struct *fsp,
+                                      SMB_ACL_T theacl)
 {
        return -1;
 }
 
-int zfsacl_fail__sys_acl_delete_def_file(vfs_handle_struct *handle,
-                                        const char *path)
+static int zfsacl_fail__sys_acl_delete_def_file(vfs_handle_struct *handle,
+                                               const char *path)
 {
        return -1;
 }


-- 
Samba Shared Repository

Reply via email to