Skip to content
Snippets Groups Projects
Commit ea6c8348 authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

add return-error support to searches

parent 7b6d39a0
No related branches found
No related tags found
No related merge requests found
......@@ -554,7 +554,8 @@ ldap_chain_search(
ondn = op->o_req_ndn;
slap_response *save_response = op->o_callback->sc_response;
int rc = LDAP_OTHER;
int rc = LDAP_OTHER,
first_rc = -1;
#ifdef LDAP_CONTROL_X_CHAINING_BEHAVIOR
LDAPControl **ctrls = NULL;
......@@ -658,6 +659,9 @@ ldap_chain_search(
/* FIXME: should we also copy filter and scope?
* according to RFC3296, no */
rc = lback->bi_op_search( op, rs );
if ( first_rc == -1 ) {
first_rc = rc;
}
cleanup:;
ldap_memfree( li.li_uri );
......@@ -692,7 +696,12 @@ cleanup:;
if ( rc != LDAP_SUCCESS ) {
/* couldn't chase any of the referrals */
rc = SLAP_CB_CONTINUE;
if ( first_rc != -1 ) {
rc = first_rc;
} else {
rc = SLAP_CB_CONTINUE;
}
}
return rc;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment