remove SIGCLD handling (not needed)
[spider.git] / perl / winclient.pl
index 55c87992e82d61f42c569debb4eb382a3241b2d1..58db0b8c95f4ce960f4adbddabac9cd618738335 100755 (executable)
@@ -70,13 +70,16 @@ die "can't fork: $!" unless defined($childpid = fork());
 
 # the communication .....
 if ($childpid) {
-       my ($lastend, $end);
+       my ($lastend, $end) = ("\n", "\n");
        
        STDOUT->autoflush(1);
     while (defined (my $msg = <$handle>)) {
                my ($sort, $call, $line) = $msg =~ /^(\w)([^\|]+)\|(.*)$/;
+               next unless defined $sort;
+               $line =~ s/\%([0-9A-F][0-9A-F])/chr(hex($1))/eg;
                if ($sort eq 'Z') {
                        kill 'TERM', $childpid;
+                       exit(0);
                } elsif ($sort eq 'E' || $sort eq 'B') {
                        ;
                } else {