minor cleanup

This commit is contained in:
Pierangelo Masarati 2005-12-12 14:33:34 +00:00
parent 85f42f5324
commit 361a97108b
2 changed files with 13 additions and 3 deletions

View File

@ -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,

View File

@ -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;