From: Ulrich Drepper Date: Wed, 14 Apr 1999 12:56:20 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_1_1~167 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1156499baede7abd7ccf1b3b9fb3c587c941b915;p=platform%2Fupstream%2Fglibc.git Update. 1999-04-14 Andreas Jaeger * wctype/wcfuncs.c (towlower): Use __ctype_tolower. Reported by Kalle Olavi Niemitalo --- diff --git a/ChangeLog b/ChangeLog index 9ce6df9..1d6e1cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-04-14 Andreas Jaeger + + * wctype/wcfuncs.c (towlower): Use __ctype_tolower. + Reported by Kalle Olavi Niemitalo + 1999-04-12 Tim Waugh * posix/wordexp-test.c: In field-splitting test cases where diff --git a/wctype/wcfuncs.c b/wctype/wcfuncs.c index ba4d88b..30836ed 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