summaryrefslogtreecommitdiff
path: root/monitor.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2021-07-03 19:23:28 +1000
committerDarren Tucker <dtucker@dtucker.net>2021-07-03 19:23:28 +1000
commit53237ac789183946dac6dcb8838bc3b6b9b43be1 (patch)
tree31ed14140bcb836aae89e13b2a32ba51ce482883 /monitor.c
parent2c9e4b319f7e98744b188b0f58859d431def343b (diff)
downloadopenssh-git-53237ac789183946dac6dcb8838bc3b6b9b43be1.tar.gz
Sync remaining ChallengeResponse removal.
These were omitted from commit 88868fd131.
Diffstat (limited to 'monitor.c')
-rw-r--r--monitor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/monitor.c b/monitor.c
index 9d23d823..7e7b9830 100644
--- a/monitor.c
+++ b/monitor.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: monitor.c,v 1.226 2021/04/30 04:02:52 dtucker Exp $ */
+/* $OpenBSD: monitor.c,v 1.227 2021/07/02 05:11:20 dtucker Exp $ */
/*
* Copyright 2002 Niels Provos <provos@citi.umich.edu>
* Copyright 2002 Markus Friedl <markus@openbsd.org>
@@ -962,7 +962,7 @@ mm_answer_bsdauthrespond(struct ssh *ssh, int sock, struct sshbuf *m)
if ((r = sshbuf_get_cstring(m, &response, NULL)) != 0)
fatal_fr(r, "parse");
- authok = options.challenge_response_authentication &&
+ authok = options.kbd_interactive_authentication &&
auth_userresponse(authctxt->as, response, 0);
authctxt->as = NULL;
debug3_f("<%s> = <%d>", response, authok);