From: ivan Date: Wed, 19 Sep 2001 18:27:45 +0000 (+0000) Subject: new openssh wants the = X-Git-Tag: NET_SSH_0_03~2 X-Git-Url: http://git.freeside.biz/gitweb/?p=Net-SSH.git;a=commitdiff_plain;h=8b6b796aa3807ef77162ef10fd5065ae25050820 new openssh wants the = --- diff --git a/SSH.pm b/SSH.pm index 2c50547..6c4291f 100644 --- a/SSH.pm +++ b/SSH.pm @@ -76,7 +76,7 @@ Connects the supplied filehandles to the ssh process (in batch mode). sub sshopen2 { my($host, $reader, $writer, @command) = @_; - open2($reader, $writer, $ssh, '-o', 'Batchmode yes', $host, @command); + open2($reader, $writer, $ssh, '-o', 'Batchmode=yes', $host, @command); } =item sshopen3 HOST, WRITER, READER, ERROR, COMMAND [, ARGS ... ]