1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

fix error in previous commit

This commit is contained in:
Yang Tse 2007-04-02 04:14:59 +00:00
parent e4d4ee8db5
commit b8c12fe658

View File

@ -105,7 +105,7 @@ if ($verbose) {
}
# Verify minimum OpenSSH version.
if ($ssh_daemon !~ /OpenSSH/) || (10 * $ssh_ver_major + $ssh_ver_minor < 37)
if (($ssh_daemon !~ /OpenSSH/) || (10 * $ssh_ver_major + $ssh_ver_minor < 37)) {
print "SCP and SFTP tests require OpenSSH 3.7 or later\n";
exit 1;
}