https://bugs.openldap.org/show_bug.cgi?id=8890
Quanah Gibson-Mount quanah@openldap.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|IN_PROGRESS |RESOLVED Resolution|--- |TEST
--- Comment #20 from Quanah Gibson-Mount quanah@openldap.org --- • 8584c582 by Steve Langasek at 2026-04-05T19:30:39+00:00 ITS#8890 Handle sizeof(time_t) > sizeof(long) in format strings
64-bit time_t means that on some architectures, time_t is now larger than a long, and making some references in format strings incorrect. To avoid truncation or other size mismatch issues, always cast to a long long and read using %lld.