+30Sep01=======================================================================
+1. made some small bug fixes in rspf checking and also messages.
23Sep01=======================================================================
1. I have incorporated Steve's (K9AN) lastest sh/sun and sh/moon stuff which
copes much better with some of the end effects that occur in these calc-
{
my ($self, $flag, $node, $user) = @_;
my $nref = Route::Node::get($node);
- if ($nref) {
- if ($nref->dxchan == $self) {
+ my $dxchan = $nref->dxchan if $nref;
+ if ($nref && $dxchan) {
+ if ($dxchan == $self) {
return 1 unless $user;
my @users = $nref->users;
return 1 if @users == 0 || grep $user eq $_, @users;
if (exists $busy{$fromnode}) {
my $ref = $busy{$fromnode};
- my $tonode = $ref->{tonode};
+ my $tonode = $ref->{tonode} || "unknown";
dbg("Busy, stopping msgno: $ref->{msgno} $fromnode->$tonode") if isdbg('msg');
$ref->stop_msg($self->call);
}