aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2026-05-18 02:52:12 +0000
committerEd Maste <emaste@FreeBSD.org>2026-05-18 13:03:02 +0000
commitf5993872faf5dbd5c142857e9633b11e330f8c38 (patch)
tree23a3d6e9f41e42d917253abc0f9ce13547106e1d
parent0b0e5daf4333a0faf93133f7d2c7b3743eead9d8 (diff)
openssh: Regen config.h to fix i386 SIZEOF_TIME_T
Fixes: 2574974648c6 ("OpenSSH: Update to 10.3p1") Sponsored by: The FreeBSD Foundation
-rw-r--r--crypto/openssh/config.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/openssh/config.h b/crypto/openssh/config.h
index 69bc79c92bb5..b922734d01b3 100644
--- a/crypto/openssh/config.h
+++ b/crypto/openssh/config.h
@@ -1921,7 +1921,11 @@
#define SIZEOF_SHORT_INT 2
/* The size of 'time_t', as computed by sizeof. */
+#ifdef __i386__
+#define SIZEOF_TIME_T 4
+#else
#define SIZEOF_TIME_T 8
+#endif
/* Define as const if snprintf() can declare const char *fmt */
#define SNPRINTF_CONST const