diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-01-28 07:32:19 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-01-28 07:32:19 +0000 |
commit | e6fb884634cded8d92da107d09354409ac1f52a5 (patch) | |
tree | 9770a3e6d44cde7c26b6f98b659e4937bc8a623b | |
parent | a15698cb7ee2b6a76830de251b418c58ffa91802 (diff) | |
download | glibc-e6fb884634cded8d92da107d09354409ac1f52a5.tar glibc-e6fb884634cded8d92da107d09354409ac1f52a5.tar.gz glibc-e6fb884634cded8d92da107d09354409ac1f52a5.tar.bz2 glibc-e6fb884634cded8d92da107d09354409ac1f52a5.zip |
Update.
* stdio-common/bug14.c: Use official name for the locale.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | nptl/ChangeLog | 3 | ||||
-rw-r--r-- | stdio-common/bug14.c | 2 |
3 files changed, 6 insertions, 1 deletions
@@ -4,6 +4,8 @@ 2003-01-27 Ulrich Drepper <drepper@redhat.com> + * stdio-common/bug14.c: Use official name for the locale. + * stdio-common/vfprintf.c [USE_IN_LIBIO]: Use _IO_cleanup_region_start instead of __libc_cleanup_region_start and _IO_cleanup_region_end instead of __libc_cleanup_region_end. diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 78e49c3413..8efb7a647d 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,5 +1,8 @@ 2003-01-27 Ulrich Drepper <drepper@redhat.com> + * Makefile (tests): Add tst-cleanup2. + * tst-cleanup2.c: New file. + * sysdeps/pthread/bits/libc-lock.h (__libc_cleanup_region_start): Interpret first parameter correctly. diff --git a/stdio-common/bug14.c b/stdio-common/bug14.c index 6ef54d5201..317d4969d3 100644 --- a/stdio-common/bug14.c +++ b/stdio-common/bug14.c @@ -11,7 +11,7 @@ static const char string[] = "\ int main (void) { - if (setlocale (LC_ALL, "de_DE.utf8") == NULL) + if (setlocale (LC_ALL, "de_DE.UTF-8") == NULL) { puts ("cannot set locale"); exit (1); |