fix error in previous commit

This commit is contained in:
Yang Tse 2007-04-02 04:14:59 +00:00
parent e4d4ee8db5
commit b8c12fe658
1 changed files with 1 additions and 1 deletions

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