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:
committed by
Paul Eggert
parent
2f53da99b5
commit
90b41b530b
4
zic.c
4
zic.c
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user