diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-04-14 12:56:20 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-04-14 12:56:20 +0000 |
commit | 1156499baede7abd7ccf1b3b9fb3c587c941b915 (patch) | |
tree | 598d0110b1e12103879fe4a130bdc4ae3acc651b | |
parent | b2900a1342fb5bdff2420b9aff4d2f6c7e3d3ad6 (diff) | |
download | glibc-1156499baede7abd7ccf1b3b9fb3c587c941b915.tar glibc-1156499baede7abd7ccf1b3b9fb3c587c941b915.tar.gz glibc-1156499baede7abd7ccf1b3b9fb3c587c941b915.tar.bz2 glibc-1156499baede7abd7ccf1b3b9fb3c587c941b915.zip |
Update.
1999-04-14 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* wctype/wcfuncs.c (towlower): Use __ctype_tolower.
Reported by Kalle Olavi Niemitalo <tosi@ees2.oulu.fi>
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | wctype/wcfuncs.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +1999-04-14 Andreas Jaeger <aj@arthur.rhein-neckar.de> + + * wctype/wcfuncs.c (towlower): Use __ctype_tolower. + Reported by Kalle Olavi Niemitalo <tosi@ees2.oulu.fi> + 1999-04-12 Tim Waugh <tim@cyberelk.demon.co.uk> * posix/wordexp-test.c: In field-splitting test cases where diff --git a/wctype/wcfuncs.c b/wctype/wcfuncs.c index ba4d88b50a..30836edb9b 100644 --- a/wctype/wcfuncs.c +++ b/wctype/wcfuncs.c @@ -76,7 +76,7 @@ wint_t /* Character is not known. Default action is to simply return it. */ return wc; - return (wint_t) __ctype_toupper[idx]; + return (wint_t) __ctype_tolower[idx]; } wint_t |