6. make set/isolate and acc/route mutually exclusive (and issue appropriate
[spider.git] / perl / DXChannel.pm
index be5feee32b2915308464961f9884c5b4e9dee218..fc779b0f63ca46172b952610e129621eaa926117 100644 (file)
@@ -101,8 +101,15 @@ $count = 0;
                  cq => '0,CQ Zone',
                  enhanced => '5,Enhanced Client,yesno',
                  senddbg => '8,Sending Debug,yesno',
+                 width => '0,Column Width',
                 );
 
+use vars qw($VERSION $BRANCH);
+$VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ );
+$BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ ) || 0;
+$main::build += $VERSION;
+$main::branch += $BRANCH;
+
 # object destruction
 sub DESTROY
 {
@@ -441,6 +448,7 @@ sub tell_login
        my $dxchan;
        foreach $dxchan (@dxchan) {
                next if $dxchan == $self;
+               next if $dxchan->{call} eq $main::mycall;
                $dxchan->send($dxchan->msg($m, $self->{call})) if $dxchan->{logininfo};
        }
 }