mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 00:59:45 -05:00
fix TOLOWER, it was equal to TOUPPER
This commit is contained in:
parent
0fe0efeeac
commit
19c2a483e6
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
#ifdef C_UPPER_LOWER
|
||||
# define TOUPPER(c) (islower(c) ? toupper(c) : (c))
|
||||
# define TOLOWER(c) (islower(c) ? toupper(c) : (c))
|
||||
# define TOLOWER(c) (isupper(c) ? tolower(c) : (c))
|
||||
#else
|
||||
# define TOUPPER(c) toupper(c)
|
||||
# define TOLOWER(c) tolower(c)
|
||||
|
|
|
|||
Loading…
Reference in a new issue