summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sshd.c b/sshd.c
index dd873ef72..985f05917 100644
--- a/sshd.c
+++ b/sshd.c
@@ -1430,6 +1430,10 @@ main(int ac, char **av)
1430 /* Fill in default values for those options not explicitly set. */ 1430 /* Fill in default values for those options not explicitly set. */
1431 fill_default_server_options(&options); 1431 fill_default_server_options(&options);
1432 1432
1433 /* challenge-response is implemented via keyboard interactive */
1434 if (options.challenge_response_authentication)
1435 options.kbd_interactive_authentication = 1;
1436
1433 /* set default channel AF */ 1437 /* set default channel AF */
1434 channel_set_af(options.address_family); 1438 channel_set_af(options.address_family);
1435 1439