diff options
author | Yang Tse <yangsita@gmail.com> | 2007-04-02 04:14:59 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-04-02 04:14:59 +0000 |
commit | b8c12fe658be792f852c1c4804a1538ff3ec197f (patch) | |
tree | 17a670f91e247d356d9b4d8adbf4890c7ec6054a /tests | |
parent | e4d4ee8db5cc81227c17fa5d750d0a0fe6cba48a (diff) |
fix error in previous commit
Diffstat (limited to 'tests')
-rw-r--r-- | tests/sshserver.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sshserver.pl b/tests/sshserver.pl index fefe1b557..974891fcf 100644 --- a/tests/sshserver.pl +++ b/tests/sshserver.pl @@ -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; } |