diff --git a/servers/slurpd/ldap_op.c b/servers/slurpd/ldap_op.c index 9ca81852eb..d56e75174b 100644 --- a/servers/slurpd/ldap_op.c +++ b/servers/slurpd/ldap_op.c @@ -847,8 +847,6 @@ char *s ) char *p; for ( p = s; ( p != NULL ) && ( *p != '\0' ); p++ ) { - if ( islower( (unsigned char) *p )) { - *p = toupper( (unsigned char) *p ); - } + *p = TOUPPER( (unsigned char) *p ); } }