]> git.sur5r.net Git - openldap/commitdiff
Use TOUPPER macro.
authorKurt Zeilenga <kurt@openldap.org>
Thu, 5 Nov 1998 22:08:43 +0000 (22:08 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Thu, 5 Nov 1998 22:08:43 +0000 (22:08 +0000)
servers/slurpd/ldap_op.c

index 9ca81852ebb22012aae55789408930ca177cca57..d56e75174b0efcb853b87b9af91bef6d167e496e 100644 (file)
@@ -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 );
     }
 }