From 24a6a91cacc84922f3b6a585478e040b9a0c02e7 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Thu, 5 Nov 1998 22:08:43 +0000 Subject: [PATCH] Use TOUPPER macro. --- servers/slurpd/ldap_op.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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 ); } } -- 2.39.5