summaryrefslogtreecommitdiff
path: root/ssh-keyscan.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2000-12-28 15:46:20 +0000
committerBen Lindstrom <mouring@eviladmin.org>2000-12-28 15:46:20 +0000
commit42717bf8fff94146edf43ea266113f1a54456c62 (patch)
tree8517e7c09f73392aec4e3d21a498ce2914511ea7 /ssh-keyscan.c
parent9fa07d6318538147f9d41a42760a4eacaa4499bb (diff)
downloadopenssh-git-42717bf8fff94146edf43ea266113f1a54456c62.tar.gz
20001229
- (bal) Fixed spelling of 'authorized_keys' in ssh-copy-id.1 by Christian Kurz <shorty@debain.org> 20001228 - (bal) SCO patch to not include <sys/queue.h> since it's unrelated header. Patch by Tim Rice <tim@multitalents.net> - Updated TODO w/ known HP/UX issue - (bal) removed extra <netdb.h> noticed by Kevin Steves and removed the bad reference to 'NeXT including it else were' on the #ifdef version.
Diffstat (limited to 'ssh-keyscan.c')
-rw-r--r--ssh-keyscan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssh-keyscan.c b/ssh-keyscan.c
index f630e8c7..68593fe7 100644
--- a/ssh-keyscan.c
+++ b/ssh-keyscan.c
@@ -10,7 +10,7 @@
#include "includes.h"
RCSID("$OpenBSD: ssh-keyscan.c,v 1.6 2000/12/19 23:17:58 markus Exp $");
-#ifdef HAVE_SYS_QUEUE_H
+#if defined(HAVE_SYS_QUEUE_H) && !defined(HAVE_BOGUS_SYS_QUEUE_H)
#include <sys/queue.h>
#else
#include "bsd-queue.h"