From 602b16e109137598da1bb8a363c0bfb4028701b3 Mon Sep 17 00:00:00 2001 From: djk Date: Sun, 11 Oct 1998 11:13:47 +0000 Subject: [PATCH] *** empty log message *** --- perl/DXProt.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/perl/DXProt.pm b/perl/DXProt.pm index 552468b9..62735682 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -252,8 +252,10 @@ sub normal if ($pcno == 21) { # delete a cluster from the list my $call = uc $field[1]; - my $ref = DXCluster->get($call); - $ref->del() if $ref; + if ($call ne $main::mycall) { # don't allow malicious buggers to disconnect me! + my $ref = DXCluster->get($call); + $ref->del() if $ref; + } last SWITCH; } -- 2.34.1