summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorivan <ivan>2000-03-06 15:04:59 +0000
committerivan <ivan>2000-03-06 15:04:59 +0000
commit089181476b72019013be25c540d71f862e805012 (patch)
treecf99f75f468a12e2d15f377e6e3ccfb4985d2f3d /FS
parentc3f5321527ad8783f81c65f39cbb1f3612cec2e5 (diff)
bug in IPC::Open3 documentation?
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/SSH.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/SSH.pm b/FS/FS/SSH.pm
index 84ac06b44..0caae879e 100644
--- a/FS/FS/SSH.pm
+++ b/FS/FS/SSH.pm
@@ -121,7 +121,8 @@ Connects the supplied filehandles to the ssh process (in batch mode).
sub sshopen3 {
my($host,$writer,$reader,$error,$command)=@_;
- open3($writer,$reader,$error,$ssh,'-o','Batchmode yes',$host,$command);
+ #open3($writer,$reader,$error,$ssh,'-o','Batchmode yes',$host,$command);
+ open3($reader,$writer,$error,$ssh,'-o','Batchmode yes',$host,$command);
}
sub _yesno {