From: minima Date: Tue, 21 Aug 2001 11:13:55 +0000 (+0000) Subject: alter the order of auto for/oper in PC11 tests X-Git-Tag: R_1_48~84 X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=775fd16897916dccc374098ba6130b0f8858b636 alter the order of auto for/oper in PC11 tests --- diff --git a/perl/DXProt.pm b/perl/DXProt.pm index b4be90c0..ab1e7572 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -422,7 +422,7 @@ sub normal my $node; my $to = $user->homenode; my $last = $user->lastoper || 0; - if ($to ne $main::mycall && $send_opernam && $main::systime > $last + $DXUser::lastoperinterval && $to && ($node = Route::Node::get($to)) ) { + if ($send_opernam && $to && $to ne $main::mycall && $main::systime > $last + $DXUser::lastoperinterval && ($node = Route::Node::get($to)) ) { my $cmd = "forward/opernam $spot[4]"; # send the rcmd but we aren't interested in the replies... my $dxchan = $node->dxchan;