X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=perl%2Fcluster.pl;h=ec1030e88096a659e1b4480c7bf78572a2ac874a;hb=26d388e9e65e585c9883ba19fc9b12bdf5aec525;hp=6f82b0d0bdebdeecaba15df94448e7a57d7bda59;hpb=44803b76e72d76567f70a11e150a53a1cd87c2d3;p=spider.git diff --git a/perl/cluster.pl b/perl/cluster.pl index 6f82b0d0..ec1030e8 100755 --- a/perl/cluster.pl +++ b/perl/cluster.pl @@ -253,11 +253,6 @@ sub process_inqueue my ($sort, $call, $line) = DXChannel::decode_input($dxchan, $data); return unless defined $sort; - # translate any crappy characters into hex characters - if ($line =~ /[\x00-\x06\x08\x0a-\x1f\x7f-\xff]/o) { - $line =~ s/([\x00-\x1f\x7f-\xff])/uc sprintf("%%%02x",ord($1))/eg; - } - # do the really sexy console interface bit! (Who is going to do the TK interface then?) dbg('chan', "<- $sort $call $line\n") unless $sort eq 'D'; @@ -340,7 +335,7 @@ $SIG{KILL} = 'DEFAULT'; # as if it matters.... # catch the rest with a hopeful message for (keys %SIG) { if (!$SIG{$_}) { - dbg('chan', "Catching SIG $_"); +# dbg('chan', "Catching SIG $_"); $SIG{$_} = sub { my $sig = shift; DXDebug::confess("Caught signal $sig"); }; } }