There's a merged pull request on the void-packages repository openntpd: fix integer overflow on i686 https://github.com/void-linux/void-packages/pull/45993 Description: #### Testing the changes - I tested the changes in this PR: **YES** #### Local build testing - I built this PR locally for my native architecture, (i686) #### Change description On i686, `time_t` is a 32 bit integer. In `openntpd`, an addition of two `time_t`s is performed, leading to an integer overflow. This code is part of the constraints logic of openntpd. When the bug triggers, all time sources will be marked invalid. Upstream pull request: https://github.com/openntpd-portable/openntpd-portable/pull/74