try fix node type changes from outside
[spider.git] / cmd / set / clx.pl
index f453e41fbe4b95a1930c4d0f4498c502278d2ae3..38c02dcd096ec018793ccaac13406db551ac7ff2 100644 (file)
@@ -5,7 +5,7 @@
 #
 # Copyright (c) 1998 - Dirk Koopman
 #
-# $Id$
+#
 #
 
 my ($self, $line) = @_;
@@ -19,11 +19,19 @@ return (1, $self->msg('e5')) if $self->priv < 5;
 
 foreach $call (@args) {
        $call = uc $call;
-       my $chan = DXChannel->get($call);
+       if ($call eq $main::mycall) {
+               push @out, $self->msg('e11', $call);
+               next;
+       }
+       if ($call eq $main::myalias) {
+               push @out, $self->msg('e11', $call);
+               next;
+       }
+       my $chan = DXChannel::get($call);
        if ($chan) {
                push @out, $self->msg('nodee1', $call);
        } else {
-               $user = DXUser->get($call);
+               $user = DXUser::get($call);
                $create = !$user;
                $user = DXUser->new($call) if $create;
                if ($user) {