]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
runtests: make 'oldlibssh' be before 0.9.5
authorDaniel Stenberg <daniel@haxx.se>
Fri, 25 Feb 2022 15:17:04 +0000 (16:17 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 26 Feb 2022 22:44:53 +0000 (23:44 +0100)
Closes #8511

tests/runtests.pl

index 8c7dbd62c9678a99553a90b293bd57e842140666..72a99892f0d441b0d1737dc931dcea222a6dea99 100755 (executable)
@@ -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;
                     }
                 }