diff options
author | 2001-10-03 18:17:48 +0000 | |
---|---|---|
committer | 2001-10-03 18:17:48 +0000 | |
commit | e1b9961e9747e9d455ad249482e9067189010b5e (patch) | |
tree | 8826bd73d648921deee89c6dc811c1c37e044f5f | |
parent | copy bsd.tbxi into the snapshot directory so it will be included in (diff) | |
download | wireguard-openbsd-e1b9961e9747e9d455ad249482e9067189010b5e.tar.xz wireguard-openbsd-e1b9961e9747e9d455ad249482e9067189010b5e.zip |
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); } } |