Include stdint.h for SIZE_MAX. Fixes OPENSSL=no build.
authordtucker <dtucker@openbsd.org>
Fri, 14 Jul 2023 07:44:21 +0000 (07:44 +0000)
committerdtucker <dtucker@openbsd.org>
Fri, 14 Jul 2023 07:44:21 +0000 (07:44 +0000)
usr.bin/ssh/auth-options.c
usr.bin/ssh/misc.c

index 44dcacf..ee5ec7e 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth-options.c,v 1.100 2023/07/14 05:31:44 djm Exp $ */
+/* $OpenBSD: auth-options.c,v 1.101 2023/07/14 07:44:21 dtucker Exp $ */
 /*
  * Copyright (c) 2018 Damien Miller <djm@mindrot.org>
  *
@@ -23,6 +23,7 @@
 #include <pwd.h>
 #include <string.h>
 #include <stdio.h>
+#include <stdint.h>
 #include <stdarg.h>
 #include <ctype.h>
 #include <limits.h>
index 4c6fcef..a128ea8 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: misc.c,v 1.182 2023/07/14 05:31:44 djm Exp $ */
+/* $OpenBSD: misc.c,v 1.183 2023/07/14 07:44:21 dtucker Exp $ */
 /*
  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
  * Copyright (c) 2005-2020 Damien Miller.  All rights reserved.
@@ -44,6 +44,7 @@
 #include <signal.h>
 #include <stdarg.h>
 #include <stdio.h>
+#include <stdint.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>