summaryrefslogtreecommitdiff
path: root/sshconnect1.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshconnect1.c')
-rw-r--r--sshconnect1.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sshconnect1.c b/sshconnect1.c
index d42676676..c0fe86293 100644
--- a/sshconnect1.c
+++ b/sshconnect1.c
@@ -13,7 +13,7 @@
13 */ 13 */
14 14
15#include "includes.h" 15#include "includes.h"
16RCSID("$OpenBSD: sshconnect1.c,v 1.31 2001/04/17 08:14:01 markus Exp $"); 16RCSID("$OpenBSD: sshconnect1.c,v 1.32 2001/05/18 14:13:29 markus Exp $");
17 17
18#include <openssl/bn.h> 18#include <openssl/bn.h>
19#include <openssl/evp.h> 19#include <openssl/evp.h>
@@ -616,7 +616,7 @@ send_afs_tokens(void)
616 * Note that the client code is not tied to s/key or TIS. 616 * Note that the client code is not tied to s/key or TIS.
617 */ 617 */
618int 618int
619try_challenge_reponse_authentication(void) 619try_challenge_response_authentication(void)
620{ 620{
621 int type, i; 621 int type, i;
622 int payload_len; 622 int payload_len;
@@ -1024,8 +1024,8 @@ ssh_userauth1(const char *local_user, const char *server_user, char *host,
1024 } 1024 }
1025 /* Try challenge response authentication if the server supports it. */ 1025 /* Try challenge response authentication if the server supports it. */
1026 if ((supported_authentications & (1 << SSH_AUTH_TIS)) && 1026 if ((supported_authentications & (1 << SSH_AUTH_TIS)) &&
1027 options.challenge_reponse_authentication && !options.batch_mode) { 1027 options.challenge_response_authentication && !options.batch_mode) {
1028 if (try_challenge_reponse_authentication()) 1028 if (try_challenge_response_authentication())
1029 return; 1029 return;
1030 } 1030 }
1031 /* Try password authentication if the server supports it. */ 1031 /* Try password authentication if the server supports it. */