From: minima Date: Mon, 22 Jan 2007 22:35:28 +0000 (+0000) Subject: disable propagation of PC9x sentences X-Git-Tag: 1.53~11 X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=4fe4a738fd4f10f57951d1ce9915389174c0921f disable propagation of PC9x sentences --- diff --git a/Changes b/Changes index f4bc2d82..2188d2d3 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ +22Jan06======================================================================= +1. disable default propagation of PC9x sentences 16Jan06======================================================================= 1. back ported a change to PC16 handling so that a locally connected node's info clears out and generally overrides any residual PC16 info gathered from diff --git a/perl/DXProt.pm b/perl/DXProt.pm index 7a9e4ca1..a6abadc8 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -357,7 +357,7 @@ sub normal # process PC frames, this will fail unless the frame starts PCnn my ($pcno) = $field[0] =~ /^PC(\d\d)/; # just get the number - unless (defined $pcno && $pcno >= 10 && $pcno <= 99) { + unless (defined $pcno && $pcno >= 10 && $pcno <= 89) { # reject PC9x messages dbg("PCPROT: unknown protocol") if isdbg('chanerr'); return; }