From: Dan Fandrich Date: Sun, 7 Jul 2024 05:04:53 +0000 (-0700) Subject: tests: fix sshd UserKnownHostsFile path for MinGW/Cygwin X-Git-Tag: curl-8_9_0~101 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d70ec5c650c00d8d677f3864c99e05ad2e3318c7;p=thirdparty%2Fcurl.git 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 --- 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));