summaryrefslogtreecommitdiff
path: root/servconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'servconf.c')
-rw-r--r--servconf.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/servconf.c b/servconf.c
index 37f607772..02d06bdad 100644
--- a/servconf.c
+++ b/servconf.c
@@ -10,7 +10,7 @@
10 */ 10 */
11 11
12#include "includes.h" 12#include "includes.h"
13RCSID("$OpenBSD: servconf.c,v 1.79 2001/05/03 21:43:01 stevesk Exp $"); 13RCSID("$OpenBSD: servconf.c,v 1.80 2001/05/18 14:13:29 markus Exp $");
14 14
15#ifdef KRB4 15#ifdef KRB4
16#include <krb.h> 16#include <krb.h>
@@ -81,7 +81,7 @@ initialize_server_options(ServerOptions *options)
81#endif 81#endif
82 options->password_authentication = -1; 82 options->password_authentication = -1;
83 options->kbd_interactive_authentication = -1; 83 options->kbd_interactive_authentication = -1;
84 options->challenge_reponse_authentication = -1; 84 options->challenge_response_authentication = -1;
85 options->permit_empty_passwd = -1; 85 options->permit_empty_passwd = -1;
86 options->use_login = -1; 86 options->use_login = -1;
87 options->allow_tcp_forwarding = -1; 87 options->allow_tcp_forwarding = -1;
@@ -186,8 +186,8 @@ fill_default_server_options(ServerOptions *options)
186 options->password_authentication = 1; 186 options->password_authentication = 1;
187 if (options->kbd_interactive_authentication == -1) 187 if (options->kbd_interactive_authentication == -1)
188 options->kbd_interactive_authentication = 0; 188 options->kbd_interactive_authentication = 0;
189 if (options->challenge_reponse_authentication == -1) 189 if (options->challenge_response_authentication == -1)
190 options->challenge_reponse_authentication = 1; 190 options->challenge_response_authentication = 1;
191 if (options->permit_empty_passwd == -1) 191 if (options->permit_empty_passwd == -1)
192 options->permit_empty_passwd = 0; 192 options->permit_empty_passwd = 0;
193 if (options->use_login == -1) 193 if (options->use_login == -1)
@@ -603,7 +603,7 @@ parse_flag:
603 goto parse_flag; 603 goto parse_flag;
604 604
605 case sChallengeResponseAuthentication: 605 case sChallengeResponseAuthentication:
606 intptr = &options->challenge_reponse_authentication; 606 intptr = &options->challenge_response_authentication;
607 goto parse_flag; 607 goto parse_flag;
608 608
609 case sPrintMotd: 609 case sPrintMotd: