mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-03 13:40:37 -05:00
misc fix for the component indexing commit
This commit is contained in:
parent
726e880993
commit
35c19ef342
3 changed files with 15 additions and 5 deletions
|
|
@ -56,7 +56,10 @@ ainfo_cmp(
|
|||
|
||||
#ifdef LDAP_COMP_MATCH
|
||||
void
|
||||
bdb_attr_comp_ref( struct bdb_info *bdb, AttributeDescription *desc, ComponentReference** cr )
|
||||
bdb_attr_comp_ref(
|
||||
struct bdb_info *bdb,
|
||||
AttributeDescription *desc,
|
||||
ComponentReference** cr )
|
||||
{
|
||||
AttrInfo *a;
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ static int list_candidates(
|
|||
ID *stack );
|
||||
|
||||
#ifdef LDAP_COMP_MATCH
|
||||
int
|
||||
static int
|
||||
ext_candidates(
|
||||
Operation *op,
|
||||
MatchingRuleAssertion *mra,
|
||||
|
|
@ -247,7 +247,7 @@ comp_list_candidates(
|
|||
return rc;
|
||||
}
|
||||
|
||||
int
|
||||
static int
|
||||
comp_equality_candidates (
|
||||
Operation *op,
|
||||
MatchingRuleAssertion *mra,
|
||||
|
|
@ -352,7 +352,7 @@ comp_equality_candidates (
|
|||
return( rc );
|
||||
}
|
||||
|
||||
int
|
||||
static int
|
||||
comp_candidates (
|
||||
Operation *op,
|
||||
MatchingRuleAssertion *mra,
|
||||
|
|
@ -399,7 +399,7 @@ comp_candidates (
|
|||
return( rc );
|
||||
}
|
||||
|
||||
int
|
||||
static int
|
||||
ext_candidates(
|
||||
Operation *op,
|
||||
MatchingRuleAssertion *mra,
|
||||
|
|
|
|||
|
|
@ -34,6 +34,13 @@ LDAP_BEGIN_DECL
|
|||
#define bdb_attr_index_config BDB_SYMBOL(attr_index_config)
|
||||
#define bdb_attr_index_destroy BDB_SYMBOL(attr_index_destroy)
|
||||
|
||||
#ifdef LDAP_COMP_MATCH
|
||||
#define bdb_attr_comp_ref BDB_SYMBOL(attr_comp_ref)
|
||||
void bdb_attr_comp_ref( struct bdb_info *bdb,
|
||||
AttributeDescription *desc,
|
||||
ComponentReference **cr );
|
||||
#endif
|
||||
|
||||
void bdb_attr_mask( struct bdb_info *bdb,
|
||||
AttributeDescription *desc,
|
||||
slap_mask_t *indexmask );
|
||||
|
|
|
|||
Loading…
Reference in a new issue