about summary refs log tree commit diff
path: root/timezone/tst-bz29951.c
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright dates with scripts/update-copyrightsPaul Eggert2024-01-011-1/+1
|
* time: Set daylight to 1 for matching DST/offset change (bug 29951)Florian Weimer2023-01-051-0/+68
The daylight variable is supposed to be set to 1 if DST is ever in use for the current time zone. But __tzfile_read used to do this: __daylight = rule_stdoff != rule_dstoff; This check can fail to set __daylight to 1 if the DST and non-DST offsets happen to be the same.