diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-10-03 18:17:49 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-10-03 18:17:49 +0000 |
commit | 5795c93970de841b8bb407df95850bfa8e36879c (patch) | |
tree | 262e1b555169725af20dcdc0501e1d8269c77600 | |
parent | 47e69d82c5387e19e4550a502142e9cb14468ba8 (diff) |
error printout fix; raj@cerias.purdue.edu
-rw-r--r-- | usr.bin/calendar/io.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/calendar/io.c b/usr.bin/calendar/io.c index a37461cec52..0b864709db7 100644 --- a/usr.bin/calendar/io.c +++ b/usr.bin/calendar/io.c @@ -1,4 +1,4 @@ -/* $OpenBSD: io.c,v 1.17 2001/09/27 18:19:20 mickey Exp $ */ +/* $OpenBSD: io.c,v 1.18 2001/10/03 18:17:48 deraadt Exp $ */ /* * Copyright (c) 1989, 1993, 1994 @@ -43,7 +43,7 @@ static const char copyright[] = #if 0 static const char sccsid[] = "@(#)calendar.c 8.3 (Berkeley) 3/25/94"; #else -static char rcsid[] = "$OpenBSD: io.c,v 1.17 2001/09/27 18:19:20 mickey Exp $"; +static char rcsid[] = "$OpenBSD: io.c,v 1.18 2001/10/03 18:17:48 deraadt Exp $"; #endif #endif /* not lint */ @@ -329,7 +329,7 @@ opencal() if (!(chdir(home) == 0 && chdir(calendarHome) == 0 && (fdin = open(calendarFile, O_RDONLY)) != -1)) - errx(1, "no calendar file: ``%s'' or ``~/%s/%s", + errx(1, "no calendar file: ``%s'' or ``~/%s/%s''", calendarFile, calendarHome, calendarFile); } } |