From c3c736c061b1d202c448d9122e16ffa5daf5d743 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 25 Feb 2022 16:17:04 +0100 Subject: [PATCH] runtests: make 'oldlibssh' be before 0.9.5 Closes #8511 --- tests/runtests.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } }