ssh: fix SIZEOF_TIME_T #define on i386

Reported by:	imp
Reviewed by:	imp
MFC after:	3 days
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D38443
This commit is contained in:
Ed Maste 2023-02-08 13:31:44 -05:00
parent 6a70e0b4cd
commit 1aa9a35f63

View file

@ -1941,7 +1941,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