remove $Id$ strings from everywhere that I can find
[spider.git] / cmd / stat / channel.pl
index 8b20e0cbd759148ee63d465dc2e7ba55dd5c9d49..472e7cf483f5a909e8a11be4119e9117fbd46e9d 100644 (file)
@@ -1,19 +1,19 @@
 #
 # show the channel status
 #
-# $Id$
+#
 #
 
 use strict;
 my ($self, $line) = @_;
 my @list = split /\s+/, $line;           # generate a list of callsigns
-@list = ($self->call) if !@list || $self->priv < 9;  # my channel if no callsigns
+@list = ($self->call) if !@list || $self->priv < 1;  # my channel if no callsigns
 
 my $call;
 my @out;
 foreach $call (@list) {
   $call = uc $call;
-  my $ref = DXChannel->get($call);
+  my $ref = DXChannel::get($call);
   if ($ref) {
     @out = print_all_fields($self, $ref, "Channel Information $call");
   } else {