X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fmsg_status.pl;h=7711886075507d5d5d87787a3afe399001c38930;hb=refs%2Fheads%2Fnewpc92timings;hp=270e3f618e29c60986240ea697d38fd5f3d45625;hpb=12ad087f70459f42152433c05c3b57669ed51e58;p=spider.git diff --git a/cmd/show/msg_status.pl b/cmd/show/msg_status.pl index 270e3f61..77118860 100644 --- a/cmd/show/msg_status.pl +++ b/cmd/show/msg_status.pl @@ -3,7 +3,7 @@ # # Copyright (c) 2000 Dirk Koopman G1TLH # -# $Id$ +# # my ($self, $line) = @_; return (0, $self->msg('e5')) if $self->priv < 5; @@ -23,7 +23,9 @@ if (!$line || $line =~ /^w/i) { push @out, "----------"; for (keys %DXMsg::work) { my $r = $DXMsg::work{$_}; - push @out, "$_ : stream $r->{stream}, tonode $r->{tonode}, fromnode $r->{fromnode}, count $r->{count}\n"; + my $n = @{$r->{lines}}; + push @out, "$_ : msgno $r->{msgno}, total lines $n, count $r->{count}\n"; + push @out, "$_ : stream $r->{stream}, tonode $r->{tonode}, fromnode $r->{fromnode}\n"; } }