X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXProtHandle.pm;h=5715902c2cfa1c0fe8ed487237bbb33b80f73abf;hb=a313d9c8eb2ea8bbdbe9b5d6e49583d0d422a621;hp=858ea00ebafc00a05a8c026c69927acd58feb808;hpb=9e5520826fe61fd3ac6941f2b8bf736a432eaa15;p=spider.git diff --git a/perl/DXProtHandle.pm b/perl/DXProtHandle.pm index 858ea00e..5715902c 100644 --- a/perl/DXProtHandle.pm +++ b/perl/DXProtHandle.pm @@ -1264,7 +1264,8 @@ sub _encode_pc92_call $flag |= $ref->here ? 1 : 0; if ($ref->isa('Route::Node') || $ref->isa('DXProt')) { $flag |= 4; - $flag |= 2 if $call ne $main::mycall && DXChannel::get($call); + my $dxchan = DXChannel::get($call); + $flag |= 2 if $call ne $main::mycall && $dxchan && !$dxchan->{do_pc92}; if ($ext) { if ($ref->version) { my $version = $ref->version || 1.0;