X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=perl%2FDXProt.pm;h=e7fdff9003fab04001479a32ff916e62689d045d;hb=371ff8b270a1377321c2793917656c8c53aaba50;hp=1002023c4f9b3980920a49a50d5396bdc4bdd76b;hpb=f0d45ffe8cee20ddb33ff38f569b7c1cd8b5666b;p=spider.git diff --git a/perl/DXProt.pm b/perl/DXProt.pm index 1002023c..e7fdff90 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -38,12 +38,6 @@ use RouteDB; use strict; -use vars qw($VERSION $BRANCH); -$VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ ); -$BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ || (0,0)); -$main::build += $VERSION; -$main::branch += $BRANCH; - use vars qw($pc11_max_age $pc23_max_age $last_pc50 $eph_restime $eph_info_restime $eph_pc34_restime $last_hour $last10 %eph %pings %rcmds $ann_to_talk $pingint $obscount %pc19list $chatdupeage $chatimportfn @@ -1487,6 +1481,10 @@ sub handle_41 $user = DXUser->new($call) unless $user; if ($_[2] == 1) { + if (($_[3] =~ /spotter/i || $_[3] =~ /self/i) && $user->name && $user->name ne $_[3]) { + dbg("PCPROT: invalid name") if isdbg('chanerr'); + return; + } $user->name($_[3]); } elsif ($_[2] == 2) { $user->qth($_[3]);