add CTY-3304
[spider.git] / cmd / merge.pl
index 26cef42a6265828b32d0a7666e1c8c402eec3ce9..3342d1e948b7b1c76004bc8554f41a8222c4fc59 100644 (file)
@@ -3,7 +3,7 @@
 #
 # Copyright (c) 1998 - Dirk Koopman G1TLH
 #
-# $Id$
+#
 #
 
 my ($self, $line) = @_;
@@ -14,7 +14,11 @@ return (1, $self->msg('e5')) if $self->priv < 5;
 return (1, $self->msg('e12')) if !$f[0];
 
 my $call = uc $f[0];
-return (1, $self->msg('e11')) if $call eq $main::mycall;
+return (1, $self->msg('e11', $call)) if $call eq $main::mycall;
+       if ($call eq $main::mycall) {
+               push @out, $self->msg('e11', $call);
+               next;
+       }
 
 my $ref = Route::Node::get($call);
 my $dxchan = $ref->dxchan if $ref;