diff options
author | Damien Miller <djm@mindrot.org> | 2023-07-18 07:41:12 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2023-07-18 07:41:12 +0200 |
commit | 750911fd31d307a767cc86e3bfa90bbbb77b1a25 (patch) | |
tree | 895aac5d6779f68ac7d82f06d5d6319dd853ff3e /auth-options.c | |
parent | conditionalise match localnetwork on ifaddrs.h (diff) | |
download | openssh-750911fd31d307a767cc86e3bfa90bbbb77b1a25.tar.xz openssh-750911fd31d307a767cc86e3bfa90bbbb77b1a25.zip |
conditionalise stdint.h inclusion on HAVE_STDINT_H
fixes build on AIX5 at least
Diffstat (limited to 'auth-options.c')
-rw-r--r-- | auth-options.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/auth-options.c b/auth-options.c index 785a23990..c89b1ee58 100644 --- a/auth-options.c +++ b/auth-options.c @@ -24,7 +24,9 @@ #include <pwd.h> #include <string.h> #include <stdio.h> -#include <stdint.h> +#ifdef HAVE_STDINT_H +# include <stdint.h> +#endif #include <stdarg.h> #include <ctype.h> #include <limits.h> |