runtests: make 'oldlibssh' be before 0.9.5

Closes #8511
This commit is contained in:
Daniel Stenberg 2022-02-25 16:17:04 +01:00
parent 8a9d93e32b
commit c3c736c061
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -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;
}
}