From: naddy@openbsd.org Date: Sun, 23 May 2021 18:22:57 +0000 (+0000) Subject: upstream: ssh: The client configuration keyword is X-Git-Tag: V_8_7_P1~192 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9acd76e6e4d2b519773e7119c33cf77f09534909;p=thirdparty%2Fopenssh-portable.git upstream: ssh: The client configuration keyword is "hostbasedacceptedalgorithms" This fixes a mistake that slipped in when "HostbasedKeyTypes" was renamed to "HostbasedAcceptedAlgorithms". Bug report by zack@philomathiclife.com OpenBSD-Commit-ID: d745a7e8e50b2589fc56877f322ea204bc784f38 --- diff --git a/readconf.c b/readconf.c index 0f27652b4..afc2f7af7 100644 --- a/readconf.c +++ b/readconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.c,v 1.353 2021/04/03 06:18:40 djm Exp $ */ +/* $OpenBSD: readconf.c,v 1.354 2021/05/23 18:22:57 naddy Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -308,7 +308,7 @@ static struct { { "revokedhostkeys", oRevokedHostKeys }, { "fingerprinthash", oFingerprintHash }, { "updatehostkeys", oUpdateHostkeys }, - { "hostbasedalgorithms", oHostbasedAcceptedAlgorithms }, + { "hostbasedacceptedalgorithms", oHostbasedAcceptedAlgorithms }, { "hostbasedkeytypes", oHostbasedAcceptedAlgorithms }, /* obsolete */ { "pubkeyacceptedalgorithms", oPubkeyAcceptedAlgorithms }, { "pubkeyacceptedkeytypes", oPubkeyAcceptedAlgorithms }, /* obsolete */