Commit b8c12fe6 authored by Yang Tse's avatar Yang Tse
Browse files

fix error in previous commit

parent e4d4ee8d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}