diff options
author | 2001-10-08 19:05:05 +0000 | |
---|---|---|
committer | 2001-10-08 19:05:05 +0000 | |
commit | b5b7941039b73eeabff691adece2cd1991b770f8 (patch) | |
tree | 5dfb46866f43dfa9f2460c38def8418dec96c4b3 /usr.bin/ssh/ssh-keyscan.c | |
parent | Link order tweak so vax crunches happily. (diff) | |
download | wireguard-openbsd-b5b7941039b73eeabff691adece2cd1991b770f8.tar.xz wireguard-openbsd-b5b7941039b73eeabff691adece2cd1991b770f8.zip |
some more IPv4or6 cleanup
Diffstat (limited to 'usr.bin/ssh/ssh-keyscan.c')
-rw-r--r-- | usr.bin/ssh/ssh-keyscan.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.bin/ssh/ssh-keyscan.c b/usr.bin/ssh/ssh-keyscan.c index 08af3ccdf23..f3df3b6538e 100644 --- a/usr.bin/ssh/ssh-keyscan.c +++ b/usr.bin/ssh/ssh-keyscan.c @@ -7,7 +7,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-keyscan.c,v 1.29 2001/08/30 22:22:32 markus Exp $"); +RCSID("$OpenBSD: ssh-keyscan.c,v 1.30 2001/10/08 19:05:05 markus Exp $"); #include <sys/queue.h> #include <errno.h> @@ -32,11 +32,7 @@ RCSID("$OpenBSD: ssh-keyscan.c,v 1.29 2001/08/30 22:22:32 markus Exp $"); /* Flag indicating whether IPv4 or IPv6. This can be set on the command line. Default value is AF_UNSPEC means both IPv4 and IPv6. */ -#ifdef IPV4_DEFAULT -int IPv4or6 = AF_INET; -#else int IPv4or6 = AF_UNSPEC; -#endif int ssh_port = SSH_DEFAULT_PORT; |