X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fnewconfiguration.pl;h=3093944266427f9be3d6d5dbe6bd2ebeef862f33;hb=HEAD;hp=a2599b88d69ebc0a53eb56dc10d6fd96d3d2c7ad;hpb=b67b50de92dbf61ce939b42f7c74e30dc58eba41;p=spider.git diff --git a/cmd/show/newconfiguration.pl b/cmd/show/newconfiguration.pl index a2599b88..30939442 100644 --- a/cmd/show/newconfiguration.pl +++ b/cmd/show/newconfiguration.pl @@ -3,19 +3,19 @@ # # Copyright (c) 2001 Dirk Koopman G1TLH # -# $Id$ +# # my ($self, $line) = @_; my @list = map { uc } split /\s+/, $line; # list of callsigns of nodes my @out; -my $nodes_only; +my $nodes_only = 1; -if (@list && $list[0] =~ /^NOD/) { - $nodes_only++; +if (@list && $list[0] =~ /^USE/) { + $nodes_only = 0; shift @list; } -push @out, $main::routeroot->config($nodes_only, 0, @list); +push @out, $main::routeroot->config($nodes_only, $self->width, 0, {}, @list); return (1, @out);