summaryrefslogtreecommitdiff
path: root/auth2.c
diff options
context:
space:
mode:
authordtucker <dtucker>2007-03-01 10:31:28 +0000
committerdtucker <dtucker>2007-03-01 10:31:28 +0000
commita9c05519fc2ceeda598fa4c39cbf7831b4e372c3 (patch)
tree8ed2ce8de7cc85b3656a4f674f593e5a78f6a269 /auth2.c
parentb221694937107b0416da4a6f0b885b6d70f64bb8 (diff)
downloadopenssh-a9c05519fc2ceeda598fa4c39cbf7831b4e372c3.tar.gz
- dtucker@cvs.openbsd.org 2007/03/01 10:28:02
[auth2.c sshd_config.5 servconf.c] Remove ChallengeResponseAuthentication support inside a Match block as its interaction with KbdInteractive makes it difficult to support. Also, relocate the CR/kbdint option special-case code into servconf. "please commit" djm@, ok markus@ for the relocation.
Diffstat (limited to 'auth2.c')
-rw-r--r--auth2.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/auth2.c b/auth2.c
index 2d880b57..b1a4e363 100644
--- a/auth2.c
+++ b/auth2.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth2.c,v 1.113 2006/08/03 03:34:41 deraadt Exp $ */
+/* $OpenBSD: auth2.c,v 1.114 2007/03/01 10:28:02 dtucker Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
*
@@ -96,10 +96,6 @@ int user_key_allowed(struct passwd *, Key *);
void
do_authentication2(Authctxt *authctxt)
{
- /* challenge-response is implemented via keyboard interactive */
- if (options.challenge_response_authentication)
- options.kbd_interactive_authentication = 1;
-
dispatch_init(&dispatch_protocol_error);
dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);