mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-02 20:10:11 -05:00
Don't complain about non-existance IDL "range" candidates
This commit is contained in:
parent
373479e5b8
commit
ce01b5d755
1 changed files with 6 additions and 3 deletions
|
|
@ -202,9 +202,12 @@ bdb_search(
|
|||
rc = bdb_id2entry( be, NULL, id, &e );
|
||||
|
||||
if ( e == NULL ) {
|
||||
Debug( LDAP_DEBUG_TRACE,
|
||||
"bdb_search: candidate %ld not found\n",
|
||||
id, 0, 0 );
|
||||
if( !BDB_IDL_IS_RANGE(candidates) ) {
|
||||
/* only complain for non-range IDLs */
|
||||
Debug( LDAP_DEBUG_TRACE,
|
||||
"bdb_search: candidate %ld not found\n",
|
||||
id, 0, 0 );
|
||||
}
|
||||
|
||||
goto loop_continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue