summaryrefslogtreecommitdiffstats
path: root/ssh-keyscan.c
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2000-12-06 23:25:40 +0100
committerKevin Steves <stevesk@pobox.com>2000-12-06 23:25:40 +0100
commit2c65ada57319d01c5ba2a670e68f8c0167b83823 (patch)
treea4d81b47c0343b2610ab33d2385d6a8c20d2cede /ssh-keyscan.c
parent20001206 (diff)
downloadopenssh-2c65ada57319d01c5ba2a670e68f8c0167b83823.tar.xz
openssh-2c65ada57319d01c5ba2a670e68f8c0167b83823.zip
- (stevesk) Import <sys/queue.h> from OpenBSD for systems that don't
have it (used in ssh-keyscan).
Diffstat (limited to 'ssh-keyscan.c')
-rw-r--r--ssh-keyscan.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ssh-keyscan.c b/ssh-keyscan.c
index 0b2ed40a9..26ea59eca 100644
--- a/ssh-keyscan.c
+++ b/ssh-keyscan.c
@@ -10,7 +10,11 @@
#include "includes.h"
RCSID("$OpenBSD: ssh-keyscan.c,v 1.1 2000/12/04 19:24:02 markus Exp $");
+#ifdef HAVE_SYS_QUEUE_H
#include <sys/queue.h>
+#else
+#include "bsd-queue.h"
+#endif
#include <err.h>
#include <errno.h>