X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fconfiguration.pl;h=fe8acf9678c4027224ba65e7456570e97a31588f;hb=679037f49e292b15a73dce96699c15b9e3049711;hp=3386a1716e5a65404ce7398a0d59378a6e712dd9;hpb=3c6b5ea97e035155d995e1c1f203e975ae8a1e22;p=spider.git diff --git a/cmd/show/configuration.pl b/cmd/show/configuration.pl index 3386a171..fe8acf96 100644 --- a/cmd/show/configuration.pl +++ b/cmd/show/configuration.pl @@ -27,21 +27,18 @@ if ($list[0] && $list[0] =~ /^NOD/) { $call = "($call)" unless $dxchan->here; push @l, $call; - my $i = 0; foreach my $ref (@val) { - if ($i >= 5) { + if (@l >= 5) { push @out, sprintf "%-12s %-12s %-12s %-12s %-12s %-12s", @l; @l = (); push @l, ""; - $i = 0; } my $s = $ref->call; $s ||= '???'; $s = sprintf "(%s)", $s unless $ref->here; push @l, $s; - $i++; } - push @l, "" while ($i++ < 5); + push @l, "" while @l < 5; push @out, sprintf "%-12s %-12s %-12s %-12s %-12s %-12s", @l; } } else { @@ -65,16 +62,14 @@ if ($list[0] && $list[0] =~ /^NOD/) { push @l, $call; @val = sort $node->users; - my $i = 0; if (@val == 0 && $node->usercount) { push @l, sprintf "(%d users)", $node->usercount; } foreach $call (@val) { - if ($i >= 5) { + if (@l >= 5) { push @out, sprintf "%-12s %-12s %-12s %-12s %-12s %-12s", @l; @l = (); push @l, ""; - $i = 0; } my $uref = Route::User::get($call); my $s = $call; @@ -84,9 +79,8 @@ if ($list[0] && $list[0] =~ /^NOD/) { $s = "$call?"; } push @l, $s; - $i++; } - push @l, "" while ($i++ < 5); + push @l, "" while @l < 5; push @out, sprintf "%-12s %-12s %-12s %-12s %-12s %-12s", @l; } }