From f315482f1344d501e8228e68d655eebee2ddfcf5 Mon Sep 17 00:00:00 2001 From: minima Date: Thu, 3 Aug 2000 09:25:29 +0000 Subject: [PATCH] put back exception to hex character checking for PC29 until the full checking thing is written --- Changes | 2 ++ perl/DXProt.pm | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index 39f982fe..7802845a 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ +02Aug00======================================================================= +1. put back hex check exception for PC29 01Aug00======================================================================= 1. made the export and import ascii system work finally. The user_asc file generated (automatically and 0000Z Sunday morning) is autoloading. Just diff --git a/perl/DXProt.pm b/perl/DXProt.pm index 8ca96434..c5882c36 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -159,7 +159,7 @@ sub normal return if $pcno < 10 || $pcno > 99; # dump bad protocol messages - if ($line =~ /\%[01][0-9A-F]/) { + if ($pcno != 29 && $line =~ /\%[01][0-9A-F]/) { dbg('chan', "CORRUPT protocol message - dumped"); return; } -- 2.34.1