diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-08-06 22:53:26 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-08-06 22:53:26 +0200 |
commit | 0076d75c253af56d178c584bd110425d884d9b9c (patch) | |
tree | 2818dc88bd9ca634c1cd2f84902005be0c922a81 /readconf.c | |
parent | - pvalchev@cvs.openbsd.org 2001/07/22 21:32:42 (diff) | |
download | openssh-0076d75c253af56d178c584bd110425d884d9b9c.tar.xz openssh-0076d75c253af56d178c584bd110425d884d9b9c.zip |
- 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
diff --git a/readconf.c b/readconf.c index 19b571a71..36700fbd5 100644 --- a/readconf.c +++ b/readconf.c @@ -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; |