From: Dirk Koopman Date: Sat, 11 Jul 2020 14:10:16 +0000 (+0100) Subject: stop crash if node adds itself in pc92 X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=306307c71522cb0a3f5834e5ea1621d6fae65991 stop crash if node adds itself in pc92 --- diff --git a/Changes b/Changes index 840e34a7..99decfd2 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ 11Jul20======================================================================= 1. Fix (embarrassing) gratuitous '#'s in bands.pl +2. IMPORTANT: certain PC92 strings can crash DXSpider if the nologchan debug + category is set (which reduces debug files to sizes that non-developers can + reasonably store (especially during big contests)), 10Jul20======================================================================= 1. Fix console.pl permissions problem when running as another user not in debug mode. Console.pl WILL NOT WORK in debug mode unless it is running diff --git a/perl/DXDebug.pm b/perl/DXDebug.pm index fcc60b86..9084062c 100644 --- a/perl/DXDebug.pm +++ b/perl/DXDebug.pm @@ -28,7 +28,7 @@ use 5.10.1; require Exporter; @ISA = qw(Exporter); -@EXPORT = qw(dbginit dbg dbgadd dbgsub dbglist dbgdump isdbg dbgclose dbgtrace confess croak cluck carp); +@EXPORT = qw(dbginit dbg dbgadd dbgsub dbglist dbgdump isdbg dbgclose dbgtrace dbgprintring confess croak cluck carp); use strict; use vars qw(%dbglevel $fp $callback $cleandays $keepdays $dbgringlth);