aboutsummaryrefslogtreecommitdiff
path: root/tests/sshserver.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/sshserver.pl')
-rw-r--r--tests/sshserver.pl9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/sshserver.pl b/tests/sshserver.pl
index 3a30fbe5e..d5b49afe4 100644
--- a/tests/sshserver.pl
+++ b/tests/sshserver.pl
@@ -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;
}