diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-10-23 17:11:35 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-10-23 17:11:35 +0000 |
commit | fd6650707a8af0acb4c4b5da55e217f95b9f595c (patch) | |
tree | 9a3430a6979353f92fc3c25861492937439f330a /timezone | |
parent | 26b2a85a045cdb3adffc10f4184a825d1b2222e3 (diff) | |
download | glibc-fd6650707a8af0acb4c4b5da55e217f95b9f595c.tar.gz glibc-fd6650707a8af0acb4c4b5da55e217f95b9f595c.tar.xz glibc-fd6650707a8af0acb4c4b5da55e217f95b9f595c.zip |
Update.
2000-10-22 Bruno Haible <haible@clisp.cons.org> * iconvdata/big5hkscs.c (big5hkscs_to_ucs): Add irreversible mappings for 0x8BF8, 0xA27E..0xA2A7. * iconvdata/BIG5HKSCS.irreversible: New file. 2000-10-23 Jakub Jelinek <jakub@redhat.com> * timezone/zdump.c (main): setlocale LC_CTYPE as well as LC_MESSAGES. * timezone/zic.c (main): Likewise. 2000-10-23 Thorsten Kukuk <kukuk@suse.de> * nscd/connections.c (invalidate_cache): Don't invalidate a cache if it is not enabled.
Diffstat (limited to 'timezone')
-rw-r--r-- | timezone/zdump.c | 1 | ||||
-rw-r--r-- | timezone/zic.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/timezone/zdump.c b/timezone/zdump.c index 094e17251a..45b97c4d62 100644 --- a/timezone/zdump.c +++ b/timezone/zdump.c @@ -155,6 +155,7 @@ char * argv[]; INITIALIZE(cuttime); #if HAVE_GETTEXT - 0 + (void) setlocale(LC_CTYPE, ""); (void) setlocale(LC_MESSAGES, ""); #ifdef TZ_DOMAINDIR (void) bindtextdomain(TZ_DOMAIN, TZ_DOMAINDIR); diff --git a/timezone/zic.c b/timezone/zic.c index bc65e73dac..6f2f6570f5 100644 --- a/timezone/zic.c +++ b/timezone/zic.c @@ -465,6 +465,7 @@ char * argv[]; (void) umask(umask(S_IWGRP | S_IWOTH) | (S_IWGRP | S_IWOTH)); #endif /* defined unix */ #if HAVE_GETTEXT - 0 + (void) setlocale(LC_CTYPE, ""); (void) setlocale(LC_MESSAGES, ""); #ifdef TZ_DOMAINDIR (void) bindtextdomain(TZ_DOMAIN, TZ_DOMAINDIR); |