From: Pierangelo Masarati Date: Sun, 14 May 2006 18:09:56 +0000 (+0000) Subject: more cleanup of previous commits X-Git-Tag: OPENLDAP_REL_ENG_2_4_1ALPHA~2^2~12 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=26d1fc8c48c1f4393bf341fe2d9dff1dfeafb407;p=openldap more cleanup of previous commits --- diff --git a/servers/slapd/back-ldap/bind.c b/servers/slapd/back-ldap/bind.c index 51fd064dca..0a482f6d7f 100644 --- a/servers/slapd/back-ldap/bind.c +++ b/servers/slapd/back-ldap/bind.c @@ -60,7 +60,9 @@ ravl_print( Avlnode *root, int depth ) lc = root->avl_data; fprintf( stderr, "lc=%p local=\"%s\" conn=%p %s refcnt=%d\n", - (void *)lc, lc->lc_local_ndn.bv_val, (void *)lc->lc_conn, + (void *)lc, + lc->lc_local_ndn.bv_val ? lc->lc_local_ndn.bv_val : "", + (void *)lc->lc_conn, avl_bf2str( root->avl_bf ), lc->lc_refcnt ); ravl_print( root->avl_left, depth+1 );