Date: Mon, 18 May 2026 13:03:43 +0000 From: Ed Maste <emaste@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: f5993872faf5 - main - openssh: Regen config.h to fix i386 SIZEOF_TIME_T Message-ID: <6a0b0e2f.33f11.1c86c810@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch main has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=f5993872faf5dbd5c142857e9633b11e330f8c38 commit f5993872faf5dbd5c142857e9633b11e330f8c38 Author: Ed Maste <emaste@FreeBSD.org> AuthorDate: 2026-05-18 02:52:12 +0000 Commit: Ed Maste <emaste@FreeBSD.org> 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 consthome | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a0b0e2f.33f11.1c86c810>
