diff options
| author | Ed Maste <emaste@FreeBSD.org> | 2026-05-18 02:52:12 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@FreeBSD.org> | 2026-05-18 13:03:02 +0000 |
| commit | f5993872faf5dbd5c142857e9633b11e330f8c38 (patch) | |
| tree | 23a3d6e9f41e42d917253abc0f9ce13547106e1d | |
| parent | 0b0e5daf4333a0faf93133f7d2c7b3743eead9d8 (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.h | 4 |
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 |
