about summary refs log tree commit diff
path: root/timezone/zic.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-01-19 14:38:48 +0000
committerUlrich Drepper <drepper@redhat.com>1999-01-19 14:38:48 +0000
commit3ef4002b3ff17002a45627c45d62eace9d84b958 (patch)
treefa951e98f5b148717f4958192480ce0ce7193633 /timezone/zic.c
parent42bd0a85b94af5f2a2246fb0ed56b73a652453d6 (diff)
downloadglibc-3ef4002b3ff17002a45627c45d62eace9d84b958.tar.gz
glibc-3ef4002b3ff17002a45627c45d62eace9d84b958.tar.xz
glibc-3ef4002b3ff17002a45627c45d62eace9d84b958.zip
Update.
1999-01-19  Ulrich Drepper  <drepper@cygnus.com>

	* timezone/zdump.c: Update from tzcode1999a.
	* timezone/zic.c: Likewise.
Diffstat (limited to 'timezone/zic.c')
-rw-r--r--timezone/zic.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/timezone/zic.c b/timezone/zic.c
index b6b43c7c17..040a6053d2 100644
--- a/timezone/zic.c
+++ b/timezone/zic.c
@@ -1,6 +1,6 @@
 #ifndef lint
 #ifndef NOID
-static char	elsieid[] = "@(#)zic.c	7.95";
+static char	elsieid[] = "@(#)zic.c	7.96";
 #endif /* !defined NOID */
 #endif /* !defined lint */
 
@@ -381,7 +381,7 @@ int	errnum;
 	extern int	sys_nerr;
 
 	return (errnum > 0 && errnum <= sys_nerr) ?
-		sys_errlist[errnum] : "Unknown system error";
+		sys_errlist[errnum] : _("Unknown system error");
 }
 #endif /* !(HAVE_STRERROR - 0) */
 
@@ -430,7 +430,7 @@ const char * const	string;
 {
 	char *	cp;
 
-	cp = ecpyalloc("warning: ");
+	cp = ecpyalloc(_("warning: "));
 	cp = ecatalloc(cp, string);
 	error(cp);
 	ifree(cp);