put back exception to hex character checking for PC29 until the full
authorminima <minima>
Thu, 3 Aug 2000 09:25:29 +0000 (09:25 +0000)
committerminima <minima>
Thu, 3 Aug 2000 09:25:29 +0000 (09:25 +0000)
checking thing is written

Changes
perl/DXProt.pm

diff --git a/Changes b/Changes
index 39f982fe2c87a9ff1b65f400c10c4f2a3b6e40c5..7802845aa12dda52317ae23615fdcb622c8df366 100644 (file)
--- 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 
index 8ca96434b1448a44f9cdfeb133025cf0247cdbcc..c5882c3660ddec7a52cc84338be0a268b8e668df 100644 (file)
@@ -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;
        }