From d70ec5c650c00d8d677f3864c99e05ad2e3318c7 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Sat, 6 Jul 2024 22:04:53 -0700 Subject: [PATCH] tests: fix sshd UserKnownHostsFile path for MinGW/Cygwin This is the same thing as the previous commit fd194f46 but on the next line. Follow-up to 70d2fca2 Ref: #10818 --- tests/sshserver.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sshserver.pl b/tests/sshserver.pl index d7835d313c..20939f0daa 100755 --- a/tests/sshserver.pl +++ b/tests/sshserver.pl @@ -848,7 +848,7 @@ if ($sshdid =~ /OpenSSH-Windows/) { elsif (pathhelp::os_is_win()) { # Ensure to use MinGW/Cygwin paths $identity_config = pathhelp::build_sys_abs_path($identity); - $knownhosts_config = pathhelp::build_sys_abs_path($knownhosts_config); + $knownhosts_config = pathhelp::build_sys_abs_path($knownhosts); } else { $identity_config = abs_path(pp($identity)); -- 2.47.3