Move uppercase comment to be next to uppercasing code.

This commit is contained in:
Kurt Zeilenga 2000-01-25 00:49:14 +00:00
parent 7f63755d5d
commit 4bdd788c68

View File

@ -184,12 +184,12 @@ dn_validate( char *dn )
char *
dn_normalize( char *dn )
{
/* upper case it */
ldap_pvt_str2upper( dn );
/* validate and compress dn */
dn = dn_validate( dn );
/* and upper case it */
return( dn );
}