misc fix for the component indexing commit

This commit is contained in:
Jong Hyuk Choi 2004-12-20 20:28:30 +00:00
parent 726e880993
commit 35c19ef342
3 changed files with 15 additions and 5 deletions

View File

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

View File

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

View File

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