Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
openldap
OpenLDAP
Commits
3f523b43
Commit
3f523b43
authored
Oct 17, 2003
by
Kurt Zeilenga
Browse files
Add a trace message to dnX509normalize
parent
3a8b3d9c
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/dn.c
View file @
3f523b43
...
...
@@ -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
;
}
/*
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment