1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2025-12-08 18:22:32 +00:00

off-by-a-second fix

SCCS-file: zic.c
SCCS-SID: 8.7
This commit is contained in:
Arthur David Olson
2006-07-17 10:24:57 -04:00
committed by Paul Eggert
parent 7664cd8b46
commit 7fe77c874f

2
zic.c
View File

@ -1537,7 +1537,7 @@ const char * const string;
for (i = 0; i < timecnt; ++i) {
j = leapcnt;
while (--j >= 0)
if (ats[i] >= trans[j]) {
if (ats[i] > trans[j] - corr[j]) {
ats[i] = tadd(ats[i], corr[j]);
break;
}