summaryrefslogtreecommitdiff
path: root/readconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'readconf.c')
-rw-r--r--readconf.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/readconf.c b/readconf.c
index 75005b3fe..542c76f33 100644
--- a/readconf.c
+++ b/readconf.c
@@ -12,7 +12,7 @@
12 */ 12 */
13 13
14#include "includes.h" 14#include "includes.h"
15RCSID("$OpenBSD: readconf.c,v 1.77 2001/04/30 11:18:51 markus Exp $"); 15RCSID("$OpenBSD: readconf.c,v 1.78 2001/05/18 14:13:28 markus Exp $");
16 16
17#include "ssh.h" 17#include "ssh.h"
18#include "xmalloc.h" 18#include "xmalloc.h"
@@ -333,7 +333,7 @@ parse_flag:
333 goto parse_flag; 333 goto parse_flag;
334 334
335 case oChallengeResponseAuthentication: 335 case oChallengeResponseAuthentication:
336 intptr = &options->challenge_reponse_authentication; 336 intptr = &options->challenge_response_authentication;
337 goto parse_flag; 337 goto parse_flag;
338 338
339#ifdef KRB4 339#ifdef KRB4
@@ -723,7 +723,7 @@ initialize_options(Options * options)
723 options->rhosts_authentication = -1; 723 options->rhosts_authentication = -1;
724 options->rsa_authentication = -1; 724 options->rsa_authentication = -1;
725 options->pubkey_authentication = -1; 725 options->pubkey_authentication = -1;
726 options->challenge_reponse_authentication = -1; 726 options->challenge_response_authentication = -1;
727#ifdef KRB4 727#ifdef KRB4
728 options->kerberos_authentication = -1; 728 options->kerberos_authentication = -1;
729#endif 729#endif
@@ -797,8 +797,8 @@ fill_default_options(Options * options)
797 options->rsa_authentication = 1; 797 options->rsa_authentication = 1;
798 if (options->pubkey_authentication == -1) 798 if (options->pubkey_authentication == -1)
799 options->pubkey_authentication = 1; 799 options->pubkey_authentication = 1;
800 if (options->challenge_reponse_authentication == -1) 800 if (options->challenge_response_authentication == -1)
801 options->challenge_reponse_authentication = 0; 801 options->challenge_response_authentication = 0;
802#ifdef KRB4 802#ifdef KRB4
803 if (options->kerberos_authentication == -1) 803 if (options->kerberos_authentication == -1)
804 options->kerberos_authentication = 1; 804 options->kerberos_authentication = 1;