fix console.pl max scroll depth
[spider.git] / cmd / rcmd.pl
index caa9fb83ad445c13e770a7ff9b7aa61fcc93dacb..033ddd2496fa5e0b66402f377d8111c7a8c6f0d1 100644 (file)
@@ -3,28 +3,29 @@
 #
 # Copyright (c) 1998 Dirk Koopman G1TLH
 #
-# $Id$
+#
 #
 
 my $self = shift;
 my $line = shift; 
 my ($call) = $line =~ /^\s*(\S+)/;
+return (1, $self->msg('e5')) if $self->remotecmd;
 
 # are we permitted?
 return (1, $self->msg('e5')) if $self->priv < 6;
 
 # is there a call?
-return (1, $self->msg('e6')) if !$call;
+return (1, $self->msg('e6')) unless $call;
 
 # remove the callsign from the line
 $line =~ s/^\s*$call\s+//;
 
 # can we see it? Is it a node?
 $call = uc $call;
-my $noderef = DXCluster->get_exact($call);
-return (1, $self->msg('e7', $call)) if !$noderef || !$noderef->pcversion;
+my $noderef = Route::Node::get($call);
+return (1, $self->msg('e7', $call)) unless $noderef;
 
-# ping it
-DXProt::addrcmd($self->call, $call, $line);
+# rcmd it
+DXProt::addrcmd($self, $call, $line);
 
 return (1, $self->msg('rcmdo', $line, $call));