From 4c84527738bdc174fc60d1166c50544dc7c2b9d6 Mon Sep 17 00:00:00 2001 From: minima Date: Fri, 2 Mar 2001 13:23:24 +0000 Subject: [PATCH] remove redundant unprintable to %xx s///g --- perl/DXChannel.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl/DXChannel.pm b/perl/DXChannel.pm index 779139fc..717dabbe 100644 --- a/perl/DXChannel.pm +++ b/perl/DXChannel.pm @@ -443,7 +443,7 @@ sub decode_input # the above regexp must work unless (defined $sort && defined $call && defined $line) { - $data =~ s/([\x00-\x1f\x7f-\xff])/uc sprintf("%%%02x",ord($1))/eg; +# $data =~ s/([\x00-\x1f\x7f-\xff])/uc sprintf("%%%02x",ord($1))/eg; dbg('err', "DUFF Line on $chcall: $data"); return (); } -- 2.34.1