[SCM] Samba Shared Repository - branch master updated - release-4-0-0alpha6-911-gf608588

Derrell Lipman derrell at samba.org
Sun Feb 15 03:30:20 GMT 2009


The branch, master has been updated
       via  f608588ea3facd3f2e567d2c356a3a7466a0d1b0 (commit)
       via  a796832683295759c1979eebd0d97b77ed88eb43 (commit)
      from  aee9bab6e1a4b5520aa9beb5252e02fb55d28b13 (commit)

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


- Log -----------------------------------------------------------------
commit f608588ea3facd3f2e567d2c356a3a7466a0d1b0
Author: Derrell Lipman <derrell.lipman at unwireduniverse.com>
Date:   Sat Feb 14 22:29:28 2009 -0500

    remove accidental white space

commit a796832683295759c1979eebd0d97b77ed88eb43
Author: Derrell Lipman <derrell.lipman at unwireduniverse.com>
Date:   Sat Feb 14 22:29:11 2009 -0500

    enums are traditionally signed. Avoid use of high bit in bit flags.

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

Summary of changes:
 source3/include/libsmbclient.h |    6 +++---
 source3/libsmb/libsmb_stat.c   |    1 -
 2 files changed, 3 insertions(+), 4 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/include/libsmbclient.h b/source3/include/libsmbclient.h
index d35d9de..f8a6c8a 100644
--- a/source3/include/libsmbclient.h
+++ b/source3/include/libsmbclient.h
@@ -186,9 +186,9 @@ typedef enum smbc_vfs_feature
     SMBC_VFS_FEATURE_RDONLY         = (1 << 0),
 
     /* Specific to libsmbclient (high-order bits) */
-    SMBC_VFS_FEATURE_DFS              = (1 << 29),
-    SMBC_VFS_FEATURE_CASE_INSENSITIVE = (1 << 30),
-    SMBC_VFS_FEATURE_NO_UNIXCIFS      = (1 << 31)
+    SMBC_VFS_FEATURE_DFS              = (1 << 28),
+    SMBC_VFS_FEATURE_CASE_INSENSITIVE = (1 << 29),
+    SMBC_VFS_FEATURE_NO_UNIXCIFS      = (1 << 30)
 } smbc_vfs_feature;
 
 typedef int smbc_bool;
diff --git a/source3/libsmb/libsmb_stat.c b/source3/libsmb/libsmb_stat.c
index 63661cd..1ffe141 100644
--- a/source3/libsmb/libsmb_stat.c
+++ b/source3/libsmb/libsmb_stat.c
@@ -447,7 +447,6 @@ SMBC_fstatvfs_ctx(SMBCCTX *context,
 #if HAVE_FSID_INT
                         st->f_fsid =
                                 (unsigned long) fs_identifier;
-                        
 #endif
                 }
         }


-- 
Samba Shared Repository


More information about the samba-cvs mailing list