diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-09-25 09:40:45 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-09-25 09:40:45 +0000 |
commit | b06d2abe746fb7873846e9f14bb8d3895c4290ed (patch) | |
tree | 0ede042266341a3f2d9d58bcbffc08cba9834c7d /source3/include/sam.h | |
parent | 891f580300d8d8eb5e258bdc31c881e73aa6ad38 (diff) | |
download | samba-b06d2abe746fb7873846e9f14bb8d3895c4290ed.tar.gz samba-b06d2abe746fb7873846e9f14bb8d3895c4290ed.tar.xz samba-b06d2abe746fb7873846e9f14bb8d3895c4290ed.zip |
Another patch from metze, towards his work on sam_ads.
See mx-ldap.sf.net for his current progress.
(This used to be commit 9c62d1312fdf0aa7b1978e8bbb56fc076ba7e9d0)
Diffstat (limited to 'source3/include/sam.h')
-rw-r--r-- | source3/include/sam.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/include/sam.h b/source3/include/sam.h index 4d18ec61b9..2157a37065 100644 --- a/source3/include/sam.h +++ b/source3/include/sam.h @@ -152,10 +152,10 @@ typedef struct sam_group_enum { /* bits for group_ctrl: to spezify if the group is global group or alias */ -#define GCB_LOCAL_GROUP 0x0001 -#define GCB_ALIAS_GROUP GCB_LOCAL_GROUP +#define GCB_LOCAL_GROUP 0x0001 +#define GCB_ALIAS_GROUP (GCB_LOCAL_GROUP |GCB_BUILTIN) #define GCB_GLOBAL_GROUP 0x0002 - +#define GCB_BUILTIN 0x1000 typedef struct sam_context { |