1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

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

This commit is contained in:
Derrell Lipman 2009-02-14 22:29:11 -05:00
parent aee9bab6e1
commit a796832683

View File

@ -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;