]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream: Include stdint.h for SIZE_MAX. Fixes OPENSSL=no build.
authordtucker@openbsd.org <dtucker@openbsd.org>
Fri, 14 Jul 2023 07:44:21 +0000 (07:44 +0000)
committerDamien Miller <djm@mindrot.org>
Mon, 17 Jul 2023 04:52:03 +0000 (14:52 +1000)
OpenBSD-Commit-ID: e7c31034a5434f2ead3579b13a7892960651e6b0

auth-options.c
misc.c

index e1ced20554adbfbbd53a99386104365ea5ab5b9b..785a239903379827363c13922ddc0af3db64be95 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>
  *
@@ -24,6 +24,7 @@
 #include <pwd.h>
 #include <string.h>
 #include <stdio.h>
+#include <stdint.h>
 #include <stdarg.h>
 #include <ctype.h>
 #include <limits.h>
diff --git a/misc.c b/misc.c
index 2960a2a4c4e0c4465745bbebd76fb8fb176985f8..dc498bd93498bd75e9289b369eaefa6f3185d150 100644 (file)
--- a/misc.c
+++ b/misc.c
@@ -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.
@@ -38,6 +38,7 @@
 #include <signal.h>
 #include <stdarg.h>
 #include <stdio.h>
+#include <stdint.h>
 #include <stdlib.h>
 #include <string.h>
 #include <time.h>