summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sshd.c b/sshd.c
index 316723a83..371b2a578 100644
--- a/sshd.c
+++ b/sshd.c
@@ -11,7 +11,7 @@
11 */ 11 */
12 12
13#include "includes.h" 13#include "includes.h"
14RCSID("$Id: sshd.c,v 1.50 2000/01/14 04:45:52 damien Exp $"); 14RCSID("$Id: sshd.c,v 1.51 2000/01/19 03:36:50 damien Exp $");
15 15
16#include "xmalloc.h" 16#include "xmalloc.h"
17#include "rsa.h" 17#include "rsa.h"
@@ -49,7 +49,11 @@ char *config_file_name = SERVER_CONFIG_FILE;
49 * Flag indicating whether IPv4 or IPv6. This can be set on the command line. 49 * Flag indicating whether IPv4 or IPv6. This can be set on the command line.
50 * Default value is AF_UNSPEC means both IPv4 and IPv6. 50 * Default value is AF_UNSPEC means both IPv4 and IPv6.
51 */ 51 */
52#ifdef IPV4_DEFAULT
53int IPv4or6 = AF_INET;
54#else
52int IPv4or6 = AF_UNSPEC; 55int IPv4or6 = AF_UNSPEC;
56#endif
53 57
54/* 58/*
55 * Debug mode flag. This can be set on the command line. If debug 59 * Debug mode flag. This can be set on the command line. If debug