X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXProt.pm;h=5407bb1bd24f96d60affc55ff8975a8b39753cdc;hb=0063cd3ba6d514ae92a6aaf22472e509eabf7e43;hp=875d2b6694314691dd9b219ae03401227870bfdd;hpb=1051376242b71ce69f92a1e92b62240167af9ccd;p=spider.git diff --git a/perl/DXProt.pm b/perl/DXProt.pm index 875d2b66..5407bb1b 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -1431,7 +1431,11 @@ sub send_local_config # get all the users connected on the above nodes and send them out foreach $n (@localnodes, @remotenodes) { - send_route($self, \&pc16, 1, $n, map {my $r = Route::User::get($_); $r ? ($r) : ()} $n->users); + if ($n) { + send_route($self, \&pc16, 1, $n, map {my $r = Route::User::get($_); $r ? ($r) : ()} $n->users); + } else { + dbg('chan', "sent a null value"); + } } }