diff options
author | Darren Tucker <dtucker@dtucker.net> | 2021-07-03 11:23:28 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2021-07-03 11:23:28 +0200 |
commit | 53237ac789183946dac6dcb8838bc3b6b9b43be1 (patch) | |
tree | 31ed14140bcb836aae89e13b2a32ba51ce482883 /sshd.c | |
parent | Disable rocky84 to figure out why agent test fails (diff) | |
download | openssh-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.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -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 && |