Subject: | utf8 bug in Net-SSH-Perl-1.30 |
when sending a scalar into Net::SSH:Perl->cmd($command); if $command is
utf8 I get an error
input must be 8 bytes long at
/usr/lib/perl5/site_perl/5.8.5/i386-linux-thread-multi/Crypt/DES.pm line 57.
worked arround by changing the encoding
Encode::from_to($command,'utf8','iso-8859-1');
Net::SSH:Perl->cmd($command);
and the problem went away