From: Pierangelo Masarati Date: Sat, 5 Aug 2006 12:33:53 +0000 (+0000) Subject: fix logging X-Git-Tag: OPENLDAP_REL_ENG_2_4_3ALPHA~9^2~32 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=bbdc0bcd009635c0d18276da3f4e065955ea6529;p=openldap fix logging --- diff --git a/servers/slapd/config.c b/servers/slapd/config.c index ce9b2db975..43cc60c1bb 100644 --- a/servers/slapd/config.c +++ b/servers/slapd/config.c @@ -1499,7 +1499,7 @@ slap_client_connect( LDAP **ldp, slap_bindconf *sb, int version ) if ( rc != LDAP_SUCCESS ) { static struct berval bv_GSSAPI = BER_BVC( "GSSAPI" ); - Debug( LDAP_DEBUG_ANY, "do_syncrep1: " + Debug( LDAP_DEBUG_ANY, "slap_client_connect: " "ldap_sasl_interactive_bind_s failed (%d)\n", rc, 0, 0 ); @@ -1526,7 +1526,7 @@ slap_client_connect( LDAP **ldp, slap_bindconf *sb, int version ) sb->sb_binddn.bv_val, LDAP_SASL_SIMPLE, &sb->sb_cred, NULL, NULL, NULL ); if ( rc != LDAP_SUCCESS ) { - Debug( LDAP_DEBUG_ANY, "do_syncrep1: " + Debug( LDAP_DEBUG_ANY, "slap_client_connect: " "ldap_sasl_bind_s failed (%d)\n", rc, 0, 0 ); goto done; }