diff options
author | mouring <mouring> | 2001-08-06 20:53:26 +0000 |
---|---|---|
committer | mouring <mouring> | 2001-08-06 20:53:26 +0000 |
commit | 9439d1b76774f2f856a21f826e3644786be6082b (patch) | |
tree | 16664c3072bffe8fdb021d40ecbbe80e7438e3b4 /readconf.c | |
parent | 3e8a7f5b2b4c584939ddb220bb343725aee26071 (diff) | |
download | openssh-9439d1b76774f2f856a21f826e3644786be6082b.tar.gz |
- markus@cvs.openbsd.org 2001/07/22 22:04:19
[readconf.c ssh.1]
enable challenge-response auth by default; ok millert@
Diffstat (limited to 'readconf.c')
-rw-r--r-- | readconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: readconf.c,v 1.82 2001/06/26 16:15:23 dugsong Exp $"); +RCSID("$OpenBSD: readconf.c,v 1.83 2001/07/22 22:04:19 markus Exp $"); #include "ssh.h" #include "xmalloc.h" @@ -803,7 +803,7 @@ fill_default_options(Options * options) if (options->pubkey_authentication == -1) options->pubkey_authentication = 1; if (options->challenge_response_authentication == -1) - options->challenge_response_authentication = 0; + options->challenge_response_authentication = 1; #if defined(KRB4) || defined(KRB5) if (options->kerberos_authentication == -1) options->kerberos_authentication = 1; |