From: djk Date: Sat, 11 Dec 1999 21:07:57 +0000 (+0000) Subject: made sure that pc48 is processed correctly by DXDb.pm X-Git-Tag: R_1_38~6 X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=commitdiff_plain;h=c5a10d832b209422912b116d0cd87e29238d0843;p=spider.git made sure that pc48 is processed correctly by DXDb.pm --- diff --git a/Changes b/Changes index db380399..c5741356 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ +11Dec99======================================================================= +1. added missing pc48 so that it calls the DXDb::process routine 10Dec99======================================================================= 1. allow msgs to marked as read or unread 02Dec99======================================================================= diff --git a/perl/DXProt.pm b/perl/DXProt.pm index d99dd3df..6a82cb16 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -688,7 +688,7 @@ sub normal if ($pcno == 43) { last SWITCH; } - if ($pcno == 37 || $pcno == 44 || $pcno == 45 || $pcno == 46 || $pcno == 47) { + if ($pcno == 37 || $pcno == 44 || $pcno == 45 || $pcno == 46 || $pcno == 47 || $pcno == 48) { DXDb::process($self, $line); return; }