mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 16:49:39 -05:00
code cleanup: remove fake loop - vestige from 1.136, obsolete since 1.174
This commit is contained in:
parent
204b035a9c
commit
eaec3a56e4
1 changed files with 1 additions and 3 deletions
|
|
@ -241,8 +241,7 @@ fe_op_search( Operation *op, SlapReply *rs )
|
|||
{
|
||||
BackendDB *bd = op->o_bd;
|
||||
|
||||
/* fake while loop to allow breaking out */
|
||||
while ( op->ors_scope == LDAP_SCOPE_BASE ) {
|
||||
if ( op->ors_scope == LDAP_SCOPE_BASE ) {
|
||||
Entry *entry = NULL;
|
||||
|
||||
if ( BER_BVISEMPTY( &op->o_req_ndn ) ) {
|
||||
|
|
@ -299,7 +298,6 @@ fe_op_search( Operation *op, SlapReply *rs )
|
|||
send_ldap_result( op, rs );
|
||||
goto return_results;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
if( BER_BVISEMPTY( &op->o_req_ndn ) && !BER_BVISEMPTY( &default_search_nbase ) ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue