mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-24 13:24:56 +08:00
minor cleanup
This commit is contained in:
parent
85f42f5324
commit
361a97108b
@ -566,13 +566,22 @@ really_bad:;
|
||||
candidates[ i ].sr_type = REP_RESULT;
|
||||
}
|
||||
|
||||
/* NOTE: ignores response controls
|
||||
* (and intermediate response controls
|
||||
* as well, except for those with search
|
||||
* references); this may not be correct,
|
||||
* but if they're not ignored then
|
||||
* back-meta would need to merge them
|
||||
* consistently (think of pagedResults...)
|
||||
*/
|
||||
if ( ldap_parse_result( msc->msc_ld,
|
||||
res,
|
||||
&candidates[ i ].sr_err,
|
||||
(char **)&candidates[ i ].sr_matched,
|
||||
NULL /* (char **)&candidates[ i ].sr_text */ ,
|
||||
&references,
|
||||
&candidates[ i ].sr_ctrls, 1 ) != LDAP_SUCCESS )
|
||||
NULL /* &candidates[ i ].sr_ctrls (unused) */ ,
|
||||
1 ) != LDAP_SUCCESS )
|
||||
{
|
||||
res = NULL;
|
||||
ldap_get_option( msc->msc_ld,
|
||||
|
@ -44,8 +44,9 @@ meta_back_conn_destroy(
|
||||
|
||||
|
||||
Debug( LDAP_DEBUG_TRACE,
|
||||
"=>meta_back_conn_destroy: fetching conn %ld\n",
|
||||
conn->c_connid, 0, 0 );
|
||||
"=>meta_back_conn_destroy: fetching conn=%ld DN=\"%s\"\n",
|
||||
conn->c_connid,
|
||||
BER_BVISNULL( &conn->c_ndn ) ? "" : conn->c_ndn.bv_val, 0 );
|
||||
|
||||
mc_curr.mc_conn = conn;
|
||||
mc_curr.mc_local_ndn = conn->c_ndn;
|
||||
|
Loading…
Reference in New Issue
Block a user