Minor typos corrected
[spider.git] / cmd / show / node.pl
index 9bc77e2a031f454c51c3983ce58c000c6cd4f179..d45cad36155a8e85ef49131ecb2e336cbd48bdf9 100644 (file)
 my ($self, $line) = @_;
 return (1, $self->msg('e5')) unless $self->priv >= 1;
 
+use DB_File;
+
 my @call = map {uc $_} split /\s+/, $line; 
 my @out;
+my $count;
 
 # search thru the user for nodes
 unless (@call) {
-       use DB_File;
        
-       my ($action, $count, $key, $data);
-       for ($action = R_FIRST, $count = 0; !$DXUser::dbm->seq($key, $data, $action); $action = R_NEXT) {
+       my ($action, $key, $data) = (0,0,0);
+       for ($action = DXUser::R_FIRST, $count = 0; !$DXUser::dbm->seq($key, $data, $action); $action = DXUser::R_NEXT) {
                if ($data =~ m{sort => '[ACRSX]'}) {
                    push @call, $key;
+                       ++$count;
                }
-               ++$count;
        } 
 }
 
@@ -67,6 +69,7 @@ foreach $call (@call) {
        } else {
                push @out, $self->msg('snode2', $pcall, $sort, $ver ? "$major\-$minor.$subs" : "      ");
        }
+    ++$count;
 }
 
 return (1, @out, $self->msg('rec', $count));