From c59b06c99ce1663560caf0147a11eb05c4b30689 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 2 Aug 2026 11:09:40 +0200 Subject: [PATCH] sshserver.pl: bump an sshd config to use its modern name Ref: https://github.com/openssh/openssh-portable/commit/ee9c0da8035b3168e8e57c1dedc2d1b0daf00eec Closes #22460 --- tests/sshserver.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sshserver.pl b/tests/sshserver.pl index 27a7fa81db..1aacbb53b7 100755 --- a/tests/sshserver.pl +++ b/tests/sshserver.pl @@ -612,7 +612,7 @@ if($sshdid !~ /OpenSSH-Windows/) { } if(($sshdid =~ /OpenSSH/) && ($sshdvernum >= 880) && ($keyalgo eq 'rsa')) { push @cfgarr, 'HostKeyAlgorithms +ssh-rsa'; - push @cfgarr, 'PubkeyAcceptedKeyTypes +ssh-rsa'; + push @cfgarr, 'PubkeyAcceptedAlgorithms +ssh-rsa'; # named PubkeyAcceptedKeyTypes in OpenSSH <8.5 } push @cfgarr, '#'; push @cfgarr, "Port $port";