Add a trace message to dnX509normalize

This commit is contained in:
Kurt Zeilenga 2003-10-17 22:38:19 +00:00
parent 3a8b3d9c1a
commit 3f523b4303

@ -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;
}
/*