2015-06-23 21:23:16 +02:00
|
|
|
--- ./cpan/libnet/lib/Net/Cmd.pm.orig 2009-09-03 14:32:13.000000000 +0000
|
|
|
|
+++ ./cpan/libnet/lib/Net/Cmd.pm 2009-09-03 14:47:30.000000000 +0000
|
|
|
|
@@ -254,6 +254,10 @@ sub command {
|
2009-06-12 16:26:43 +02:00
|
|
|
$str = $cmd->toascii($str) if $tr;
|
|
|
|
$str .= "\015\012";
|
|
|
|
|
|
|
|
+ # encode to individual utf8 bytes if
|
|
|
|
+ # $str is a string (in internal UTF-8)
|
|
|
|
+ utf8::encode($str) if is_utf8($str);
|
|
|
|
+
|
|
|
|
my $len = length $str;
|
|
|
|
my $swlen;
|
|
|
|
|
2015-06-23 21:23:16 +02:00
|
|
|
@@ -509,6 +512,10 @@ sub rawdatasend {
|
|
|
|
return 0
|
|
|
|
if $cmd->_is_closed;
|
2009-06-12 16:26:43 +02:00
|
|
|
|
|
|
|
+ # encode to individual utf8 bytes if
|
|
|
|
+ # $line is a string (in internal UTF-8)
|
|
|
|
+ utf8::encode($line) if is_utf8($line);
|
|
|
|
+
|
|
|
|
return 1
|
|
|
|
unless length($line);
|
|
|
|
|