openssh: Regen config.h to fix i386 SIZEOF_TIME_T

Fixes: 2574974648 ("OpenSSH: Update to 10.3p1")
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Ed Maste
2026-05-17 22:52:12 -04:00
parent 0b0e5daf43
commit f5993872fa
+4
View File
@@ -1921,7 +1921,11 @@
#define SIZEOF_SHORT_INT 2 #define SIZEOF_SHORT_INT 2
/* The size of 'time_t', as computed by sizeof. */ /* The size of 'time_t', as computed by sizeof. */
#ifdef __i386__
#define SIZEOF_TIME_T 4
#else
#define SIZEOF_TIME_T 8 #define SIZEOF_TIME_T 8
#endif
/* Define as const if snprintf() can declare const char *fmt */ /* Define as const if snprintf() can declare const char *fmt */
#define SNPRINTF_CONST const #define SNPRINTF_CONST const