1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2025-11-22 10:02:13 +00:00

SCCS-file: zic.c

SCCS-SID: 7.77
This commit is contained in:
Arthur David Olson
1996-06-01 13:14:57 -04:00
committed by Paul Eggert
parent 2f53da99b5
commit 90b41b530b

4
zic.c
View File

@ -1694,11 +1694,13 @@ error(_("can't determine time zone abbrevation to use just after until time"));
** Now we may get to set starttime for the next zone line.
*/
if (useuntil) {
starttime = tadd(zp->z_untiltime, -gmtoff);
startttisstd = zp->z_untilrule.r_todisstd;
startttisgmt = zp->z_untilrule.r_todisgmt;
starttime = zp->z_untiltime;
if (!startttisstd)
starttime = tadd(starttime, -stdoff);
if (!startttisgmt)
starttime = tadd(starttime, -gmtoff);
}
}
writezone(zpfirst->z_name);