mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 09:39:45 -05:00
fix new API update
This commit is contained in:
parent
f6c1079cff
commit
7d5087e8c2
1 changed files with 3 additions and 0 deletions
|
|
@ -172,6 +172,7 @@ monitor_back_search( Operation *op, SlapReply *rs )
|
|||
if ( rc == LDAP_COMPARE_TRUE ) {
|
||||
rs->sr_entry = e;
|
||||
send_search_entry( op, rs );
|
||||
rs->sr_entry = NULL;
|
||||
}
|
||||
rc = LDAP_SUCCESS;
|
||||
monitor_cache_release( mi, e );
|
||||
|
|
@ -189,7 +190,9 @@ monitor_back_search( Operation *op, SlapReply *rs )
|
|||
monitor_entry_update( mi, e );
|
||||
rc = test_filter( op, e, op->oq_search.rs_filter );
|
||||
if ( rc == LDAP_COMPARE_TRUE ) {
|
||||
rs->sr_entry = e;
|
||||
send_search_entry( op, rs );
|
||||
rs->sr_entry = NULL;
|
||||
}
|
||||
|
||||
rc = monitor_send_children( op, rs, e, 1 );
|
||||
|
|
|
|||
Loading…
Reference in a new issue