summaryrefslogtreecommitdiff
path: root/ssh-keyscan.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-05-18 20:52:40 +1000
committerDamien Miller <djm@mindrot.org>2003-05-18 20:52:40 +1000
commit7e1bbc55af32d8f5d81200323198c65b548faaad (patch)
treebe317e9ceb17268984b58d8f6c243123a66107f2 /ssh-keyscan.c
parent20a8f97b034df418d0e5e04b11000b44ab07e628 (diff)
- (djm) Remove IPv4 by default hack now that we can specify AF in config
Diffstat (limited to 'ssh-keyscan.c')
-rw-r--r--ssh-keyscan.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ssh-keyscan.c b/ssh-keyscan.c
index 6b1954269..e2cd789b5 100644
--- a/ssh-keyscan.c
+++ b/ssh-keyscan.c
@@ -31,11 +31,7 @@ RCSID("$OpenBSD: ssh-keyscan.c,v 1.43 2003/04/26 04:29:49 deraadt Exp $");
31 31
32/* Flag indicating whether IPv4 or IPv6. This can be set on the command line. 32/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
33 Default value is AF_UNSPEC means both IPv4 and IPv6. */ 33 Default value is AF_UNSPEC means both IPv4 and IPv6. */
34#ifdef IPV4_DEFAULT
35int IPv4or6 = AF_INET;
36#else
37int IPv4or6 = AF_UNSPEC; 34int IPv4or6 = AF_UNSPEC;
38#endif
39 35
40int ssh_port = SSH_DEFAULT_PORT; 36int ssh_port = SSH_DEFAULT_PORT;
41 37