From 22b1533f4eb85e51f17b6259dff5721a0e3dfe7e Mon Sep 17 00:00:00 2001 From: Arthur David Olson Date: Thu, 30 Oct 1986 11:31:29 -0500 Subject: [PATCH] fix month default in UNTIL rules SCCS-file: zic.c SCCS-SID: 2.11 --- zic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zic.c b/zic.c index 61ae04d..91fdf06 100644 --- a/zic.c +++ b/zic.c @@ -856,7 +856,7 @@ char ** fields; return FALSE; } if (nfields <= i_untilmonth) - r.r_month = 1; /* default to January */ + r.r_month = TM_JANUARY; /* default to January */ else { if ((lp = byword(fields[i_untilmonth], mon_names)) == NULL) {