Page MenuHomeFreeBSD

tzcode: Fix early tz change detection
ClosedPublic

Authored by des on Oct 31 2025, 5:16 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Mar 29, 4:43 PM
Unknown Object (File)
Sun, Mar 29, 12:40 PM
Unknown Object (File)
Sun, Mar 29, 9:29 AM
Unknown Object (File)
Thu, Mar 26, 7:44 PM
Unknown Object (File)
Wed, Mar 25, 11:09 AM
Unknown Object (File)
Sun, Mar 22, 12:54 PM
Unknown Object (File)
Sun, Mar 22, 8:50 AM
Unknown Object (File)
Wed, Mar 18, 12:40 PM
Subscribers

Details

Summary

Assume tzdata is not fresh if last_checked is zero, as comparing the
current time to last_checked less than __tz_change_interval after boot
may produce a false negative.

While here, invert the return value from tzdata_is_fresh() to better
match its new name (it was previously called recheck_tzdata(), so zero
for fresh and non-zero for stale made sense, but it doesn't now).

PR: 269207
MFC after: 3 days

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

des requested review of this revision.Oct 31 2025, 5:16 PM

initializing last_checked to TIME_T_MIN did not work, presumably because the subtraction overflowed, so explicitly check for zero instead.

This revision is now accepted and ready to land.Nov 2 2025, 12:14 AM
This revision was automatically updated to reflect the committed changes.