summaryrefslogtreecommitdiffstats
path: root/auth-options.c
diff options
context:
space:
mode:
authordtucker@openbsd.org <dtucker@openbsd.org>2023-07-14 09:44:21 +0200
committerDamien Miller <djm@mindrot.org>2023-07-17 06:52:03 +0200
commit18ea857770e84825a3a6238bb37f54864487b59f (patch)
treeb1fa19c882bb1a92635aa308f8fba3b89b5df050 /auth-options.c
parentFix typo in declaration of nmesg. (diff)
downloadopenssh-18ea857770e84825a3a6238bb37f54864487b59f.tar.xz
openssh-18ea857770e84825a3a6238bb37f54864487b59f.zip
upstream: Include stdint.h for SIZE_MAX. Fixes OPENSSL=no build.
OpenBSD-Commit-ID: e7c31034a5434f2ead3579b13a7892960651e6b0
Diffstat (limited to 'auth-options.c')
-rw-r--r--auth-options.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/auth-options.c b/auth-options.c
index e1ced2055..785a23990 100644
--- a/auth-options.c
+++ b/auth-options.c
@@ -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>