aboutsummaryrefslogtreecommitdiff
path: root/tests/sshserver.pl
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-01-04 14:12:10 +0000
committerYang Tse <yangsita@gmail.com>2008-01-04 14:12:10 +0000
commit61a2d5ea75706520ccafd48aa7d4c6d35f92204e (patch)
tree82695cea1c5b834ff53c2c1a7b5887a6a3d68aeb /tests/sshserver.pl
parentc479c643332b08eedcf9b7caa98b25e7f542d9c8 (diff)
'ControlPath' ssh client configuration file option requires OpenSSH 4.2 or
later to accept 'none' as an indication to disable connection multiplexing
Diffstat (limited to 'tests/sshserver.pl')
-rw-r--r--tests/sshserver.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/sshserver.pl b/tests/sshserver.pl
index dac46a9f4..f651e0714 100644
--- a/tests/sshserver.pl
+++ b/tests/sshserver.pl
@@ -746,6 +746,9 @@ if((($sshid =~ /OpenSSH/) && ($sshvernum >= 370)) ||
if(($sshid =~ /OpenSSH/) && ($sshvernum >= 390)) {
push @cfgarr, 'ControlMaster no';
+}
+
+if(($sshid =~ /OpenSSH/) && ($sshvernum >= 420)) {
push @cfgarr, 'ControlPath none';
}