From a796832683295759c1979eebd0d97b77ed88eb43 Mon Sep 17 00:00:00 2001 From: Derrell Lipman Date: Sat, 14 Feb 2009 22:29:11 -0500 Subject: enums are traditionally signed. Avoid use of high bit in bit flags. --- source3/include/libsmbclient.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/include') diff --git a/source3/include/libsmbclient.h b/source3/include/libsmbclient.h index d35d9de6ea..f8a6c8a235 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; -- cgit