summaryrefslogtreecommitdiff
path: root/ssh.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.c
parent20a8f97b034df418d0e5e04b11000b44ab07e628 (diff)
- (djm) Remove IPv4 by default hack now that we can specify AF in config
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ssh.c b/ssh.c
index 096116b8b..480bd85e6 100644
--- a/ssh.c
+++ b/ssh.c
@@ -81,11 +81,7 @@ char *__progname;
81 81
82/* Flag indicating whether IPv4 or IPv6. This can be set on the command line. 82/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
83 Default value is AF_UNSPEC means both IPv4 and IPv6. */ 83 Default value is AF_UNSPEC means both IPv4 and IPv6. */
84#ifdef IPV4_DEFAULT
85int IPv4or6 = AF_INET;
86#else
87int IPv4or6 = AF_UNSPEC; 84int IPv4or6 = AF_UNSPEC;
88#endif
89 85
90/* Flag indicating whether debug mode is on. This can be set on the command line. */ 86/* Flag indicating whether debug mode is on. This can be set on the command line. */
91int debug_flag = 0; 87int debug_flag = 0;