From 3b1b1d227667819335524efb329a0277e325081b Mon Sep 17 00:00:00 2001 From: Garrett Wollman Date: Mon, 8 Feb 1999 16:52:42 +0000 Subject: [PATCH] Fix mismerged error message. Submitted by: charnier --- usr.sbin/zic/zic.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/usr.sbin/zic/zic.c b/usr.sbin/zic/zic.c index c8f503b1d485..a008e249118a 100644 --- a/usr.sbin/zic/zic.c +++ b/usr.sbin/zic/zic.c @@ -6,7 +6,7 @@ static char elsieid[] = "@(#)zic.c 7.96"; #ifndef lint static const char rcsid[] = - "$Id: zic.c,v 1.8 1999/01/21 17:46:19 wollman Exp $"; + "$Id: zic.c,v 1.9 1999/01/21 21:09:56 wollman Exp $"; #endif /* not lint */ #include "private.h" @@ -615,8 +615,7 @@ warning(_("hard link failed, symbolic link used")); } #endif if (result != 0) { - err(EXIT_FAILURE, - _("%s: Can't link from %s to %s"), + err(EXIT_FAILURE, _("can't link from %s to %s"), fromname, toname); } }