mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 01:29:59 -05:00
Fix undefined filters
This commit is contained in:
parent
6b524914c5
commit
3baffe7cf2
1 changed files with 1 additions and 3 deletions
|
|
@ -50,7 +50,7 @@ bdb_filter_candidates(
|
|||
ID *tmp,
|
||||
ID *stack )
|
||||
{
|
||||
int rc = -1;
|
||||
int rc = 0;
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG ( INDEX, ENTRY, "=> bdb_filter_candidates\n", 0, 0, 0 );
|
||||
#else
|
||||
|
|
@ -59,7 +59,6 @@ bdb_filter_candidates(
|
|||
|
||||
switch ( f->f_choice ) {
|
||||
case SLAPD_FILTER_COMPUTED:
|
||||
rc = 0;
|
||||
break;
|
||||
|
||||
case SLAPD_FILTER_DN_ONE:
|
||||
|
|
@ -150,7 +149,6 @@ bdb_filter_candidates(
|
|||
{ struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
|
||||
BDB_IDL_ALL( bdb, ids );
|
||||
}
|
||||
rc = 0;
|
||||
break;
|
||||
|
||||
case LDAP_FILTER_AND:
|
||||
|
|
|
|||
Loading…
Reference in a new issue