summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2002-08-24 01:54:53 +0000
committerivan <ivan>2002-08-24 01:54:53 +0000
commitda4964ca55c1d21e4e557daa125b58c70e71c301 (patch)
tree3c1893ef7eaba8457e380a280fc0ad760370266e
parent0b21b6e389571f9a7a87d0b6cbcba9b8c4f8f176 (diff)
missing ;
-rw-r--r--SSH.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/SSH.pm b/SSH.pm
index 639bf2b..a47cc48 100644
--- a/SSH.pm
+++ b/SSH.pm
@@ -176,7 +176,7 @@ sub _ssh_options {
} else {
$equalspace = "=";
}
- my @options = ( '-o', 'BatchMode'.$equalspace.'yes' )
+ my @options = ( '-o', 'BatchMode'.$equalspace.'yes' );
if ( $ssh_version =~ /.*OpenSSH[-|_](\w+)\./ && $1 > 1 ) {
unshift @options, '-T';
}