mirror of git://sourceware.org/git/glibc.git
Update.
* locale/programs/ld-ctype.c (set_class_defaults): Correctly determine tolower mapping for 8bit table if the tolower keyword is not given.
This commit is contained in:
parent
5ad81f4085
commit
85cb60ffd7
|
|
@ -1,5 +1,9 @@
|
|||
1999-12-08 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* locale/programs/ld-ctype.c (set_class_defaults): Correctly
|
||||
determine tolower mapping for 8bit table if the tolower keyword is
|
||||
not given.
|
||||
|
||||
* sysdeps/posix/getaddrinfo.c (gaih_inet): Don't fail if host has
|
||||
only IPv6 address. Reported by Artur Frysiak <wiget@pld.org.pl>.
|
||||
|
||||
|
|
|
|||
|
|
@ -2848,8 +2848,7 @@ character `%s' not defined while needed as default value"),
|
|||
|
||||
for (cnt = 0; cnt < 256; ++cnt)
|
||||
if (ctype->map256_collection[0][cnt] != 0)
|
||||
ctype->map_collection[1][ctype->map_collection[0][cnt]]
|
||||
= ctype->charnames[cnt];
|
||||
ctype->map256_collection[1][ctype->map256_collection[0][cnt]] = cnt;
|
||||
}
|
||||
|
||||
if (ctype->outdigits_act == 0)
|
||||
|
|
|
|||
Loading…
Reference in New Issue