]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
When unable to start test suite sshserver, log if OpenSSH has not been
authorYang Tse <yangsita@gmail.com>
Sat, 17 Nov 2007 17:43:33 +0000 (17:43 +0000)
committerYang Tse <yangsita@gmail.com>
Sat, 17 Nov 2007 17:43:33 +0000 (17:43 +0000)
found or the OpenSSH version found

tests/sshserver.pl

index 3a30fbe5eb305dcf7e3a0be028f8405863dd8939..d5b49afe4b4b89c232a27731c4a560b0535868b1 100644 (file)
@@ -131,7 +131,14 @@ if ($verbose) {
 
 # Verify minimum OpenSSH version.
 if (($ssh_daemon !~ /OpenSSH/) || (10 * $ssh_ver_major + $ssh_ver_minor < 37)) {
-    print "SCP, SFTP and SOCKS tests require OpenSSH 3.7 or later\n";
+    my $info;
+    if(!$ssh_daemon) {
+        $info = "OpenSSH not found";
+    }
+    else {
+        $info = "Found OpenSSH $ssh_ver_major.$ssh_ver_minor"
+    }
+    print "$info: SCP, SFTP and SOCKS tests require OpenSSH 3.7 or later\n";
     exit 1;
 }