summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-06-05 18:56:16 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-06-05 18:56:16 +0000
commit551ea37576333968c760f3f080a8dfe51ca9b06a (patch)
tree824a61c317213749b57ba877a700ff7102ea4dd7 /sshd.c
parentc4bcb7d9e3a381a4dd5048ee23e4bd2cd6023de7 (diff)
- markus@cvs.openbsd.org 2001/05/18 14:13:29
[auth-chall.c auth.h auth1.c auth2-chall.c auth2.c readconf.c readconf.h servconf.c servconf.h sshconnect1.c sshconnect2.c sshd.c] improved kbd-interactive support. work by per@appgate.com and me
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshd.c b/sshd.c
index 552fa3b27..a20b81cca 100644
--- a/sshd.c
+++ b/sshd.c
@@ -40,7 +40,7 @@
40 */ 40 */
41 41
42#include "includes.h" 42#include "includes.h"
43RCSID("$OpenBSD: sshd.c,v 1.195 2001/04/15 16:58:03 markus Exp $"); 43RCSID("$OpenBSD: sshd.c,v 1.196 2001/05/18 14:13:29 markus Exp $");
44 44
45#include <openssl/dh.h> 45#include <openssl/dh.h>
46#include <openssl/bn.h> 46#include <openssl/bn.h>
@@ -1265,7 +1265,7 @@ do_ssh1_kex(void)
1265 if (options.afs_token_passing) 1265 if (options.afs_token_passing)
1266 auth_mask |= 1 << SSH_PASS_AFS_TOKEN; 1266 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
1267#endif 1267#endif
1268 if (options.challenge_reponse_authentication == 1) 1268 if (options.challenge_response_authentication == 1)
1269 auth_mask |= 1 << SSH_AUTH_TIS; 1269 auth_mask |= 1 << SSH_AUTH_TIS;
1270 if (options.password_authentication) 1270 if (options.password_authentication)
1271 auth_mask |= 1 << SSH_AUTH_PASSWORD; 1271 auth_mask |= 1 << SSH_AUTH_PASSWORD;