Skip to content
Snippets Groups Projects
Commit 3f523b43 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Add a trace message to dnX509normalize

parent 3a8b3d9c
Branches
Tags
No related merge requests found
......@@ -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;
}
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment