The branch main has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=f5993872faf5dbd5c142857e9633b11e330f8c38
commit f5993872faf5dbd5c142857e9633b11e330f8c38 Author: Ed Maste <[email protected]> AuthorDate: 2026-05-18 02:52:12 +0000 Commit: Ed Maste <[email protected]> CommitDate: 2026-05-18 13:03:02 +0000 openssh: Regen config.h to fix i386 SIZEOF_TIME_T Fixes: 2574974648c6 ("OpenSSH: Update to 10.3p1") Sponsored by: The FreeBSD Foundation --- crypto/openssh/config.h | 4 ++++ 1 file changed, 4 insertions(+) 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
