SecBSD's official ports repository

This commit is contained in:
purplerain 2023-08-16 22:26:55 +00:00
commit 2c0afcbbf3
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
64331 changed files with 5339189 additions and 0 deletions

View file

@ -0,0 +1,14 @@
64bit time_t
Index: src/yapp.cc
--- src/yapp.cc.orig
+++ src/yapp.cc
@@ -281,7 +281,7 @@ int YApplication::mainLoop() {
// This is irrelevant when using monotonic clocks:
// if time travel to past, decrease the timeouts
if (diff < zerotime()) {
- warn("time warp of %ld.%06ld", long(diff.tv_sec), diff.tv_usec);
+ warn("time warp of %lld.%06ld", diff.tv_sec, diff.tv_usec);
decreaseTimeouts(diff);
} else {
// no detection for time travel to the future