mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 10:07:56 -05:00
Use TOUPPER macro.
This commit is contained in:
parent
8777f818dc
commit
24a6a91cac
1 changed files with 1 additions and 3 deletions
|
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue