From 33c95e70cc90be9f60c4efd73717386b299048f7 Mon Sep 17 00:00:00 2001 From: minima Date: Fri, 17 Aug 2001 15:45:59 +0000 Subject: [PATCH] sort our priv levels in a more sophisticated way --- cmd/show/station.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/show/station.pl b/cmd/show/station.pl index 26f2bbe6..d9f2b9d1 100644 --- a/cmd/show/station.pl +++ b/cmd/show/station.pl @@ -14,7 +14,8 @@ my $seek; push @f, $self->call unless @f; if (@f <= 2 && uc $f[0] eq 'ALL') { - return (1, $self->msg('e6')) if ($self->priv < 6); + return (1, $self->msg('e6')) if @f == 1 && $self->priv < 6; + return (1, $self->msg('e6')) if $self->priv < 5 || $f[1] eq '*'; shift @f; my $exp = shellregex(uc shift @f) if @f; my @calls; -- 2.34.1