From: Daniel Stenberg Date: Fri, 25 Feb 2022 15:17:04 +0000 (+0100) Subject: runtests: make 'oldlibssh' be before 0.9.5 X-Git-Tag: curl-7_82_0~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c3c736c061b1d202c448d9122e16ffa5daf5d743;p=thirdparty%2Fcurl.git runtests: make 'oldlibssh' be before 0.9.5 Closes #8511 --- diff --git a/tests/runtests.pl b/tests/runtests.pl index 8c7dbd62c9..72a99892f0 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -3047,8 +3047,8 @@ sub checksystem { $has_libssh=1; if($1 =~ /(\d+)\.(\d+).(\d+)/) { my $v = $1 * 100 + $2 * 10 + $3; - if($v < 96) { - # before 0.9.6 + if($v < 95) { + # before 0.9.5 $has_oldlibssh = 1; } }