fixed sh/node
[spider.git] / cmd / show / node.pl
index c18d8fb9376dc8d71e18c48ac68243dfd5dcd8a0..9b6938a60db6489ec1d2166d8486def5cda98cc5 100644 (file)
@@ -19,19 +19,18 @@ return (1, $self->msg('e5')) unless $self->priv >= 1;
 
 my @call = map {uc $_} split /\s+/, $line; 
 my @out;
+my $count;
 
 # search thru the user for nodes
 unless (@call) {
-#  the official way
-#      @call = sort map { my $ref; (($ref = DXUser->get_current($_)) && $ref->sort ne 'U') ? $_ : () } DXUser::get_all_calls;
        use DB_File;
        
-       my ($action, $count, $key, $data);
+       my ($action, $key, $data);
        for ($action = R_FIRST, $count = 0; !$DXUser::dbm->seq($key, $data, $action); $action = R_NEXT) {
                if ($data =~ m{sort => '[ACRSX]'}) {
                    push @call, $key;
+                       ++$count;
                }
-               ++$count;
        } 
 }
 
@@ -69,9 +68,10 @@ foreach $call (@call) {
        } else {
                push @out, $self->msg('snode2', $pcall, $sort, $ver ? "$major\-$minor.$subs" : "      ");
        }
+    ++$count;
 }
 
-return (1, @out);
+return (1, @out, $self->msg('rec', $count));