diff options
Diffstat (limited to 'SSH.pm')
-rw-r--r-- | SSH.pm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -107,7 +107,7 @@ sub ssh_cmd { $host = $opt->{user}. '@'. $host if exists $opt->{user}; @command = ( $opt->{command} ); push @command, @{ $opt->{args} } if exists $opt->{args}; - my $stdin_string = $opt->{stdin_string}; + $stdin_string = $opt->{stdin_string}; } else { ($host, @command) = @_; undef $stdin_string; |