From: minima Date: Sun, 14 Jan 2007 20:54:36 +0000 (+0000) Subject: don't route pc92 back to their origin X-Git-Tag: 1.54~48 X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=fe5f655526588af1e7048c7ef570072eace383f5 don't route pc92 back to their origin --- diff --git a/perl/DXProt.pm b/perl/DXProt.pm index 98f95033..c00219ec 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -1228,8 +1228,8 @@ sub broadcast_route_pc9x $line =~ /\^H(\d+)\^\~?$/; unless ($1 > 0 && $self->{isolate}) { foreach $dxchan (@dxchan) { - next if $dxchan == $self; - next if $dxchan == $main::me; + next if $dxchan == $self || $main::me; + next if $origin eq $dxchan->{call}; # don't route some from this call back again. next unless $dxchan->{do_pc92}; next unless $dxchan->isa('DXProt');