summaryrefslogtreecommitdiffstats
path: root/source3/include/libsmbclient.h
diff options
context:
space:
mode:
authorDerrell Lipman <derrell.lipman@unwireduniverse.com>2009-02-14 22:29:11 -0500
committerDerrell Lipman <derrell.lipman@unwireduniverse.com>2009-02-14 22:29:11 -0500
commita796832683295759c1979eebd0d97b77ed88eb43 (patch)
treedd433c41020535d004ea46ccc3a065242b460e8a /source3/include/libsmbclient.h
parentaee9bab6e1a4b5520aa9beb5252e02fb55d28b13 (diff)
downloadsamba-a796832683295759c1979eebd0d97b77ed88eb43.tar.gz
samba-a796832683295759c1979eebd0d97b77ed88eb43.tar.xz
samba-a796832683295759c1979eebd0d97b77ed88eb43.zip
enums are traditionally signed. Avoid use of high bit in bit flags.
Diffstat (limited to 'source3/include/libsmbclient.h')
-rw-r--r--source3/include/libsmbclient.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/include/libsmbclient.h b/source3/include/libsmbclient.h
index d35d9de6eaf..f8a6c8a235e 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;