From ee3a4f9dd600b4a80a9957e2c3dd90c99d73cf0e Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Thu, 8 Aug 2002 05:39:17 +0000 Subject: Change the version. Update to require new gettext. Change hash.c to by K&R. Redo some strings to make i18n simpler. --- misc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'misc.c') diff --git a/misc.c b/misc.c index b4e778a..6e2b570 100644 --- a/misc.c +++ b/misc.c @@ -339,7 +339,7 @@ void perror_with_name (str, name) const char *str, *name; { - error (NILF, "%s%s: %s", str, name, strerror (errno)); + error (NILF, _("%s%s: %s"), str, name, strerror (errno)); } /* Print an error message from errno and exit. */ @@ -348,7 +348,7 @@ void pfatal_with_name (name) const char *name; { - fatal (NILF, "%s: %s", name, strerror (errno)); + fatal (NILF, _("%s: %s"), name, strerror (errno)); /* NOTREACHED */ } -- cgit v1.2.3