summaryrefslogtreecommitdiffstats
path: root/sshd.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2021-07-03 11:23:28 +0200
committerDarren Tucker <dtucker@dtucker.net>2021-07-03 11:23:28 +0200
commit53237ac789183946dac6dcb8838bc3b6b9b43be1 (patch)
tree31ed14140bcb836aae89e13b2a32ba51ce482883 /sshd.c
parentDisable rocky84 to figure out why agent test fails (diff)
downloadopenssh-53237ac789183946dac6dcb8838bc3b6b9b43be1.tar.xz
openssh-53237ac789183946dac6dcb8838bc3b6b9b43be1.zip
Sync remaining ChallengeResponse removal.
These were omitted from commit 88868fd131.
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/sshd.c b/sshd.c
index 6d645c4ab..a4fbb38e1 100644
--- a/sshd.c
+++ b/sshd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshd.c,v 1.576 2021/06/10 03:14:14 dtucker Exp $ */
+/* $OpenBSD: sshd.c,v 1.577 2021/07/02 05:11:21 dtucker Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -1753,10 +1753,6 @@ main(int ac, char **av)
/* Fill in default values for those options not explicitly set. */
fill_default_server_options(&options);
- /* challenge-response is implemented via keyboard interactive */
- if (options.challenge_response_authentication)
- options.kbd_interactive_authentication = 1;
-
/* Check that options are sensible */
if (options.authorized_keys_command_user == NULL &&
(options.authorized_keys_command != NULL &&