From 9abdd9620822cc1232dc702a76d95ebf133733b5 Mon Sep 17 00:00:00 2001 From: Eirik Nygaard Date: Tue, 6 Jan 2004 15:29:09 +0000 Subject: [PATCH] * Default to a calendar file that actually exists (calendar.all) --- usr.bin/calendar/io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/calendar/io.c b/usr.bin/calendar/io.c index 6c7527a68c..9252432a1a 100644 --- a/usr.bin/calendar/io.c +++ b/usr.bin/calendar/io.c @@ -33,7 +33,7 @@ * @(#) Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved. * @(#)calendar.c 8.3 (Berkeley) 3/25/94 * $FreeBSD: src/usr.bin/calendar/io.c,v 1.13.2.3 2002/08/26 00:32:46 jmallett Exp $ - * $DragonFly: src/usr.bin/calendar/io.c,v 1.3 2003/10/02 17:42:26 hmp Exp $ + * $DragonFly: src/usr.bin/calendar/io.c,v 1.4 2004/01/06 15:29:09 eirikn Exp $ */ #include @@ -57,7 +57,7 @@ #include "calendar.h" -const char *calendarFile = "calendar"; /* default calendar file */ +const char *calendarFile = "calendar.all"; /* default calendar file */ const char *calendarHomes[] = { ".calendar", _PATH_INCLUDE }; /* HOME */ const char *calendarNoMail = "nomail"; /* don't sent mail if this file exist */ -- 2.41.0