Skip to content
Snippets Groups Projects
Commit b2aa91b2 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

cleanup

parent 1abceb30
No related branches found
No related tags found
No related merge requests found
......@@ -1723,14 +1723,16 @@ typedef struct rep_search_s {
Entry *r_entry;
slap_mask_t r_attr_flags;
#define SLAP_ATTRS_UNDEFINED (0x00U)
#define SLAP_OPATTRS_NO (0x01U)
#define SLAP_OPATTRS_YES (0x02U)
#define SLAP_USERATTRS_NO (0x10U)
#define SLAP_USERATTRS_YES (0x20U)
#define SLAP_OPATTRS_MASK(f) ( (f) & (SLAP_OPATTRS_NO|SLAP_OPATTRS_YES) )
#define SLAP_OPATTRS(f) ( ( (f) & SLAP_OPATTRS_YES ) == SLAP_OPATTRS_YES )
#define SLAP_USERATTRS_MASK(f) ( (f) & (SLAP_USERATTRS_NO|SLAP_USERATTRS_YES) )
#define SLAP_USERATTRS(f) ( ( (f) & SLAP_USERATTRS_YES ) == SLAP_USERATTRS_YES )
#define SLAP_OPATTRS_NO (0x01U)
#define SLAP_OPATTRS_YES (0x02U)
#define SLAP_USERATTRS_NO (0x10U)
#define SLAP_USERATTRS_YES (0x20U)
#define SLAP_OPATTRS_MASK(f) ((f) & (SLAP_OPATTRS_NO|SLAP_OPATTRS_YES))
#define SLAP_OPATTRS(f) (((f) & SLAP_OPATTRS_YES) == SLAP_OPATTRS_YES)
#define SLAP_USERATTRS_MASK(f) ((f) & (SLAP_USERATTRS_NO|SLAP_USERATTRS_YES))
#define SLAP_USERATTRS(f) \
(((f) & SLAP_USERATTRS_YES) == SLAP_USERATTRS_YES)
Attribute *r_operational_attrs;
AttributeName *r_attrs;
int r_nentries;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment