]> git.sur5r.net Git - openldap/commitdiff
minor cleanup
authorPierangelo Masarati <ando@openldap.org>
Mon, 12 Dec 2005 14:33:34 +0000 (14:33 +0000)
committerPierangelo Masarati <ando@openldap.org>
Mon, 12 Dec 2005 14:33:34 +0000 (14:33 +0000)
servers/slapd/back-meta/search.c
servers/slapd/back-meta/unbind.c

index f1f8bc2d97d1beb2511d44790604837381c0f184..b64c92d9359d65df27ddd6247ccae79e97af2397 100644 (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,
index ed98015e57504b2de59b53892deb684600aef21d..c9aea2de998878179175ae1d968b7db9cca6c7f7 100644 (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;