1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2025-12-06 16:03:57 +00:00

change >= and <= handling

SCCS-file: zic.c
SCCS-SID: 7.116
This commit is contained in:
Arthur David Olson
2004-03-02 09:56:21 -05:00
committed by Paul Eggert
parent 150d380525
commit 1ce04ff988

4
zic.c
View File

@ -2139,8 +2139,8 @@ register const int wantedy;
--i;
}
if (i < 0 || i >= len_months[isleap(y)][m]) {
error(_("no day in month matches rule"));
(void) exit(EXIT_FAILURE);
if (noise)
warning(_("rule goes past start/end of month--will not work with pre-2004 versions of zic"));
}
}
if (dayoff < 0 && !TYPE_SIGNED(time_t))