Skip to content
Snippets Groups Projects
Commit 7941652e authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

do exactly what requested

parent ce3c0245
No related branches found
No related tags found
No related merge requests found
......@@ -46,12 +46,26 @@ slapdn( int argc, char **argv )
argc -= optind;
for ( ; argc--; argv++ ) {
struct berval dn, pdn, ndn;
struct berval dn,
pdn = BER_BVNULL,
ndn = BER_BVNULL;
ber_str2bv( argv[ 0 ], 0, 0, &dn );
rc = dnPrettyNormal( NULL, &dn,
&pdn, &ndn, NULL );
switch ( dn_mode ) {
case SLAP_TOOL_LDAPDN_PRETTY:
rc = dnPretty( NULL, &dn, &pdn, NULL );
break;
case SLAP_TOOL_LDAPDN_NORMAL:
rc = dnNormalize( 0, NULL, NULL, &dn, &ndn, NULL );
break;
default:
rc = dnPrettyNormal( NULL, &dn, &pdn, &ndn, NULL );
break;
}
if ( rc != LDAP_SUCCESS ) {
fprintf( stderr, "DN: <%s> check failed %d (%s)\n",
dn.bv_val, rc,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment