SHA256
3
0
forked from pool/perl
perl/perl-netcmdutf8.diff
OBS User autobuild 73f4c6db03 Accepting request 19992 from devel:languages:perl
Copy from devel:languages:perl/perl based on submit request 19992 from user coolo

OBS-URL: https://build.opensuse.org/request/show/19992
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl?expand=0&rev=31
2009-09-06 10:05:42 +00:00

25 lines
646 B
Diff

--- lib/Net/Cmd.pm.orig 2009-06-10 09:23:18.000000000 +0000
+++ lib/Net/Cmd.pm 2009-06-10 09:25:49.000000000 +0000
@@ -226,6 +226,10 @@ sub command {
$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;
@@ -471,6 +475,10 @@ sub rawdatasend {
return 0 unless defined(fileno($cmd));
+ # 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);