summaryrefslogtreecommitdiff
path: root/ssh-keygen.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2019-10-09 09:06:35 +1100
committerDamien Miller <djm@mindrot.org>2019-10-09 09:06:35 +1100
commitcfc1897a2002ec6c4dc879b24e8b3153c87ea2cf (patch)
treeebeec2716f65dbb23cf0db174b2b82833c0b8fc2 /ssh-keygen.c
parent13b3369830a43b89a503915216a23816d1b25744 (diff)
wrap stdint.h include in HAVE_STDINT_H
make the indenting a little more consistent too.. Fixes Solaris 2.6; reported by Tom G. Christensen
Diffstat (limited to 'ssh-keygen.c')
-rw-r--r--ssh-keygen.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ssh-keygen.c b/ssh-keygen.c
index 85fb4424f..8c829cad6 100644
--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -24,7 +24,9 @@
24#include "openbsd-compat/openssl-compat.h" 24#include "openbsd-compat/openssl-compat.h"
25#endif 25#endif
26 26
27#include <stdint.h> 27#ifdef HAVE_STDINT_H
28# include <stdint.h>
29#endif
28#include <errno.h> 30#include <errno.h>
29#include <fcntl.h> 31#include <fcntl.h>
30#include <netdb.h> 32#include <netdb.h>