From: Dirk Koopman Date: Wed, 11 Jul 2007 18:46:39 +0000 (+0100) Subject: allow store nodes that have a dxchannel X-Git-Tag: 1.55~100 X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=0ae2756b512f3783efe7f7e3c124b0a074227e81 allow store nodes that have a dxchannel --- diff --git a/cmd/show/configuration.pl b/cmd/show/configuration.pl index 416e1a0e..3101c535 100644 --- a/cmd/show/configuration.pl +++ b/cmd/show/configuration.pl @@ -21,7 +21,7 @@ if ($list[0] && $list[0] =~ /^NOD/) { foreach my $n (@nodes) { $dxchan = $n->dxchan; - push @{$ch{$dxchan->call}}, $n; + push @{$ch{$dxchan->call}}, $n if $dxchan; } foreach my $call (sort keys %ch) { diff --git a/perl/Version.pm b/perl/Version.pm index 646b2ef2..353fc11a 100644 --- a/perl/Version.pm +++ b/perl/Version.pm @@ -11,6 +11,6 @@ use vars qw($version $subversion $build); $version = '1.54'; $subversion = '0'; -$build = '114'; +$build = '115'; 1;