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

Derrell Lipman derrell at samba.org
Sun Feb 15 03:31:21 GMT 2009


The branch, v3-3-test has been updated
       via  82e392f6b24518d40ea65dbdf044d8ba94e77ae2 (commit)
       via  480054f3625fcd4532a4cdc68bd750e93610d89f (commit)
      from  f38c50b13f3ad916db884611ad4199198f6cade2 (commit)

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


- Log -----------------------------------------------------------------
commit 82e392f6b24518d40ea65dbdf044d8ba94e77ae2
Author: Derrell Lipman <derrell.lipman at unwireduniverse.com>
Date:   Sat Feb 14 22:30:21 2009 -0500

    remove accidental white space

commit 480054f3625fcd4532a4cdc68bd750e93610d89f
Author: Derrell Lipman <derrell.lipman at unwireduniverse.com>
Date:   Sat Feb 14 22:30:13 2009 -0500

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

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

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


Changeset truncated at 500 lines:

diff --git a/source/include/libsmbclient.h b/source/include/libsmbclient.h
index 67010a5..a3a5d70 100644
--- a/source/include/libsmbclient.h
+++ b/source/include/libsmbclient.h
@@ -185,9 +185,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/source/libsmb/libsmb_stat.c b/source/libsmb/libsmb_stat.c
index b9b14e3..186ef13 100644
--- a/source/libsmb/libsmb_stat.c
+++ b/source/libsmb/libsmb_stat.c
@@ -448,7 +448,6 @@ SMBC_fstatvfs_ctx(SMBCCTX *context,
                         st->f_fsid =
                                 (unsigned long) fs_identifier;
 #endif
-                        
                 }
         }
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list