remove $Id$ strings from everywhere that I can find
[spider.git] / cmd / set / clx.pl
index 954a6655be63b96174f88941b481d11e1dea4b81..f27174add4d6540120e066d9adb781fa209f4ff8 100644 (file)
@@ -1,11 +1,11 @@
 #
-# set user type to 'S' for Spider node
+# set user type to 'C' for CLX node
 #
 # Please note that this is only effective if the user is not on-line
 #
 # Copyright (c) 1998 - Dirk Koopman
 #
-# $Id$
+#
 #
 
 my ($self, $line) = @_;
@@ -19,7 +19,7 @@ return (1, $self->msg('e5')) if $self->priv < 5;
 
 foreach $call (@args) {
        $call = uc $call;
-       my $chan = DXChannel->get($call);
+       my $chan = DXChannel::get($call);
        if ($chan) {
                push @out, $self->msg('nodee1', $call);
        } else {
@@ -29,6 +29,7 @@ foreach $call (@args) {
                if ($user) {
                        $user->sort('C');
                        $user->homenode($call);
+                       $user->lockout(0);
                        $user->priv(1) unless $user->priv;
                        $user->close();
                        push @out, $self->msg($create ? 'nodecc' : 'nodec', $call);