Remove extra space in dn created by modrdn.

This commit is contained in:
Kurt Zeilenga 1999-02-11 21:29:34 +00:00
parent 91363c270e
commit a2b165dcac

View File

@ -80,7 +80,7 @@ ldbm_back_modrdn(
+ 3 );
if ( dn_type( e->e_dn ) == DN_X500 ) {
strcpy( new_dn, newrdn );
strcat( new_dn, ", " );
strcat( new_dn, "," );
strcat( new_dn, p_dn );
} else {
char *s;