summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ssh.c b/ssh.c
index 962aa2d43..2a2fb2d35 100644
--- a/ssh.c
+++ b/ssh.c
@@ -11,7 +11,7 @@
11 */ 11 */
12 12
13#include "includes.h" 13#include "includes.h"
14RCSID("$Id: ssh.c,v 1.16 2000/01/14 04:45:51 damien Exp $"); 14RCSID("$Id: ssh.c,v 1.17 2000/01/19 03:36:49 damien Exp $");
15 15
16#include "xmalloc.h" 16#include "xmalloc.h"
17#include "ssh.h" 17#include "ssh.h"
@@ -29,7 +29,11 @@ const char *__progname = "ssh";
29 29
30/* Flag indicating whether IPv4 or IPv6. This can be set on the command line. 30/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
31 Default value is AF_UNSPEC means both IPv4 and IPv6. */ 31 Default value is AF_UNSPEC means both IPv4 and IPv6. */
32#ifdef IPV4_DEFAULT
33int IPv4or6 = AF_INET;
34#else
32int IPv4or6 = AF_UNSPEC; 35int IPv4or6 = AF_UNSPEC;
36#endif
33 37
34/* Flag indicating whether debug mode is on. This can be set on the command line. */ 38/* Flag indicating whether debug mode is on. This can be set on the command line. */
35int debug_flag = 0; 39int debug_flag = 0;