mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-04-18 15:20:35 +08:00
Add a trace message to dnX509normalize
This commit is contained in:
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;
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user