Fix the bits

This commit is contained in:
Kurt Zeilenga 2002-01-10 22:54:24 +00:00
parent 80a214aef0
commit c3b62aae91
2 changed files with 7 additions and 5 deletions

View File

@ -809,6 +809,8 @@ LDAP_SLAPD_F (int) is_entry_objectclass LDAP_P((
is_entry_objectclass((e), slap_schema.si_oc_referral)
#define is_entry_subentry(e) \
is_entry_objectclass((e), slap_schema.si_oc_subentry)
#define is_entry_dynamicObject(e) \
is_entry_objectclass((e), slap_schema.si_oc_dynamicObject)
/*

View File

@ -1019,12 +1019,12 @@ struct slap_backend_db {
#define SLAP_BFLAG_GLUE_INSTANCE 0x0010U /* a glue backend */
#define SLAP_BFLAG_GLUE_SUBORDINATE 0x0020U /* child of a glue hierarchy */
#define SLAP_BFLAG_GLUE_LINKED 0x00400 /* child is connected to parent */
#define SLAP_BFLAG_GLUE_LINKED 0x0040U /* child is connected to parent */
#define SLAP_BFLAG_ALIASES 0x0010U
#define SLAP_BFLAG_MONITOR 0x0020U
#define SLAP_BFLAG_REFERRALS 0x0040U
#define SLAP_BFLAG_SUBENTRIES 0x0080U
#define SLAP_BFLAG_ALIASES 0x0100U
#define SLAP_BFLAG_MONITOR 0x0200U
#define SLAP_BFLAG_REFERRALS 0x0400U
#define SLAP_BFLAG_SUBENTRIES 0x0800U
slap_mask_t be_flags;
#define SLAP_LASTMOD(be) ((be)->be_flags & SLAP_BFLAG_LASTMOD)