X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fconfiguration.pl;h=09521cb6b7406e3d062994c90158243df744b857;hb=11ddef27f66f3ceb6b482c1c1f6d82d3d43576c1;hp=fe8acf9678c4027224ba65e7456570e97a31588f;hpb=679037f49e292b15a73dce96699c15b9e3049711;p=spider.git diff --git a/cmd/show/configuration.pl b/cmd/show/configuration.pl index fe8acf96..09521cb6 100644 --- a/cmd/show/configuration.pl +++ b/cmd/show/configuration.pl @@ -20,7 +20,7 @@ if ($list[0] && $list[0] =~ /^NOD/) { my $dxchan; foreach $dxchan (@ch) { - @val = sort {$a->call cmp $b->call} grep { $_->dxchan == $dxchan } @nodes; + @val = sort {$a->call cmp $b->call} grep { $_->dxchan && $_->dxchan == $dxchan } @nodes; @l = (); my $call = $dxchan->call; $call ||= '???'; @@ -28,7 +28,7 @@ if ($list[0] && $list[0] =~ /^NOD/) { push @l, $call; foreach my $ref (@val) { - if (@l >= 5) { + if (@l >= 6) { push @out, sprintf "%-12s %-12s %-12s %-12s %-12s %-12s", @l; @l = (); push @l, ""; @@ -38,7 +38,7 @@ if ($list[0] && $list[0] =~ /^NOD/) { $s = sprintf "(%s)", $s unless $ref->here; push @l, $s; } - push @l, "" while @l < 5; + push @l, "" while @l < 6; push @out, sprintf "%-12s %-12s %-12s %-12s %-12s %-12s", @l; } } else { @@ -66,7 +66,7 @@ if ($list[0] && $list[0] =~ /^NOD/) { push @l, sprintf "(%d users)", $node->usercount; } foreach $call (@val) { - if (@l >= 5) { + if (@l >= 6) { push @out, sprintf "%-12s %-12s %-12s %-12s %-12s %-12s", @l; @l = (); push @l, ""; @@ -80,7 +80,7 @@ if ($list[0] && $list[0] =~ /^NOD/) { } push @l, $s; } - push @l, "" while @l < 5; + push @l, "" while @l < 6; push @out, sprintf "%-12s %-12s %-12s %-12s %-12s %-12s", @l; } }