From: Kurt Zeilenga Date: Fri, 17 Oct 2003 22:38:19 +0000 (+0000) Subject: Add a trace message to dnX509normalize X-Git-Tag: OPENLDAP_REL_ENG_2_1_MP~559 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3f523b4303298344cbef3bdb9c38356417d93c57;p=openldap Add a trace message to dnX509normalize --- diff --git a/servers/slapd/dn.c b/servers/slapd/dn.c index 5696dbf837..3adfe06301 100644 --- a/servers/slapd/dn.c +++ b/servers/slapd/dn.c @@ -882,7 +882,12 @@ int dnX509normalize( void *x509_name, struct berval *out ) { /* Invoke the LDAP library's converter with our schema-rewriter */ - return ldap_X509dn2bv( x509_name, out, LDAPDN_rewrite, 0 ); + int rc = ldap_X509dn2bv( x509_name, out, LDAPDN_rewrite, 0 ); + + Debug( LDAP_DEBUG_TRACE, + "dnX509Normalize: <%s>\n", out->bv_val, 0, 0 ); + + return rc; } /*