Skip Menu |

This queue is for tickets about the Net-SSH-Perl CPAN distribution.

Report information
The Basics
Id: 18271
Status: resolved
Priority: 0/
Queue: Net-SSH-Perl

People
Owner: Nobody in particular
Requestors: tim [...] thegoldfish.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



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
Workaround seems to fix the issue.