* iconv/iconv_prog.c (main): Unify messages.
This commit is contained in:
Ulrich Drepper 2003-02-22 20:02:35 +00:00
parent e57f9f7526
commit 757f9fcb6f
7 changed files with 23 additions and 13 deletions

View File

@ -1,5 +1,7 @@
2003-02-22 Ulrich Drepper <drepper@redhat.com> 2003-02-22 Ulrich Drepper <drepper@redhat.com>
* iconv/iconv_prog.c (main): Unify messages.
* stdlib/strtod.c (INTERNAL): Remove bogus clearing of second word * stdlib/strtod.c (INTERNAL): Remove bogus clearing of second word
when shifting retval. when shifting retval.
* stdlib/tst-strtod.c (main): Add strtold test case. * stdlib/tst-strtod.c (main): Add strtold test case.

View File

@ -239,7 +239,7 @@ main (int argc, char *argv[])
if (to_wrong) if (to_wrong)
error (EXIT_FAILURE, 0, error (EXIT_FAILURE, 0,
_("\ _("\
conversions from `%s' and to `%s' are not supported"), conversion from `%s' and to `%s' are not supported"),
from_pretty, to_pretty); from_pretty, to_pretty);
else else
error (EXIT_FAILURE, 0, error (EXIT_FAILURE, 0,

View File

@ -1,3 +1,12 @@
2003-02-22 Ulrich Drepper <drepper@redhat.com>
* Makefile (before-compile): Add $(objpfx)banner.h.
* eintr.c (eintr_source): Add unnecessary return but the compiler
insists.
* tst-kill3.c: Include <unistd.h>.
2003-02-21 Roland McGrath <roland@redhat.com> 2003-02-21 Roland McGrath <roland@redhat.com>
* pthread_create.c (start_thread): Call __libc_thread_freeres. * pthread_create.c (start_thread): Call __libc_thread_freeres.

View File

@ -306,7 +306,7 @@ $(objpfx)crti.o: $(objpfx)crti.S $(objpfx)defs.h
generated += crti.S defs.h pt-initfini.s $(objpfx)tst-atfork2.mtrace \ generated += crti.S defs.h pt-initfini.s $(objpfx)tst-atfork2.mtrace \
$(addsuffix .so,$(strip $(modules-names))) $(addsuffix .so,$(strip $(modules-names)))
$(objpfx)version.os: $(objpfx)banner.h before-compile = $(objpfx)banner.h
$(objpfx)banner.h: Banner $(objpfx)banner.h: Banner
sed 's/\(.*\)/"\1\\n"/' $< > $@ sed 's/\(.*\)/"\1\\n"/' $< > $@
generated += banner.h generated += banner.h

View File

@ -48,6 +48,9 @@ eintr_source (void *arg)
nanosleep (&ts, NULL); nanosleep (&ts, NULL);
} }
/* NOTREACHED */
return NULL;
} }

View File

@ -22,6 +22,7 @@
#include <signal.h> #include <signal.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h>
#include <sys/time.h> #include <sys/time.h>

View File

@ -293,22 +293,22 @@ msgid "cannot open output file"
msgstr "Kann die Ausgabedatei nicht öffnen" msgstr "Kann die Ausgabedatei nicht öffnen"
#: iconv/iconv_prog.c:241 #: iconv/iconv_prog.c:241
#, fuzzy, c-format #, c-format
msgid "conversions from `%s' and to `%s' are not supported" msgid "conversions from `%s' and to `%s' are not supported"
msgstr "Konvertierung von »%s« nach »%s« wird nicht unterstützt" msgstr "Konvertierung von »%s« nach »%s« wird nicht unterstützt"
#: iconv/iconv_prog.c:246 #: iconv/iconv_prog.c:246
#, fuzzy, c-format #, c-format
msgid "conversion from `%s' is not supported" msgid "conversion from `%s' is not supported"
msgstr "Konvertierung von »%s« nach »%s« wird nicht unterstützt" msgstr "Konvertierung von »%s« wird nicht unterstützt"
#: iconv/iconv_prog.c:253 #: iconv/iconv_prog.c:253
#, fuzzy, c-format #, c-format
msgid "conversion to `%s' is not supported" msgid "conversion to `%s' is not supported"
msgstr "Konvertierung von »%s« nach »%s« wird nicht unterstützt" msgstr "Konvertierung nach »%s« wird nicht unterstützt"
#: iconv/iconv_prog.c:257 #: iconv/iconv_prog.c:257
#, fuzzy, c-format #, c-format
msgid "conversion from `%s' to `%s' is not supported" msgid "conversion from `%s' to `%s' is not supported"
msgstr "Konvertierung von »%s« nach »%s« wird nicht unterstützt" msgstr "Konvertierung von »%s« nach »%s« wird nicht unterstützt"
@ -368,7 +368,6 @@ msgid "unknown iconv() error %d"
msgstr "unbekannter iconv()-Fehler %d" msgstr "unbekannter iconv()-Fehler %d"
#: iconv/iconv_prog.c:753 #: iconv/iconv_prog.c:753
#, fuzzy
msgid "" msgid ""
"The following list contain all the coded character sets known. This does\n" "The following list contain all the coded character sets known. This does\n"
"not necessarily mean that all combinations of these names can be used for\n" "not necessarily mean that all combinations of these names can be used for\n"
@ -382,10 +381,6 @@ msgstr ""
"und TO Parameter konvertiert werden kann. Eine Zeichensatzkodierung kann\n" "und TO Parameter konvertiert werden kann. Eine Zeichensatzkodierung kann\n"
"unter verschiedenen Namen aufgeführt sein (sog. Aliasnamen).\n" "unter verschiedenen Namen aufgeführt sein (sog. Aliasnamen).\n"
"\n" "\n"
"Einige Namen sind keine normalen Zeichenketten, sondern Reguläre Ausdrücke;\n"
"diese passen zu einer Reihe von Namen, die als Parameter angegeben\n"
"werden können.\n"
"\n"
" " " "
#: iconv/iconvconfig.c:110 #: iconv/iconvconfig.c:110