get rid of PC92 local node check
authorDirk Koopman <djk@tobit.co.uk>
Thu, 26 Jun 2008 19:58:47 +0000 (20:58 +0100)
committerDirk Koopman <djk@tobit.co.uk>
Thu, 26 Jun 2008 19:58:47 +0000 (20:58 +0100)
this is in addition to the last commit, it also stopped normal
linking of nodes as well

perl/DXProtHandle.pm
perl/Version.pm

index 29d3e7513c85ede2109a5d328d74ece17502a99b..2fa4095fa381c0a1b9ddb94829405a7cd6fd9173 100644 (file)
@@ -1755,13 +1755,13 @@ sub handle_92
                        push @radd, $add if $add;
                }
 
-               # do a pass through removing any references to either locally connected nodes or mycall
+               # do a pass through removing any references to either mycall
                my @nent;
                for (@ent) {
                        my $dxc;
                        next unless $_ && @$_;
-                       if ($_->[0] eq $main::mycall || (($dxc = DXChannel::get($_->[0])) && $dxc->is_node)) {
-                               dbg("PCPROT: $_->[0] refers to locally connected node, ignored") if isdbg('chanerr');
+                       if ($_->[0] eq $main::mycall) {
+                               dbg("PCPROT: $_->[0] refers to me, ignored") if isdbg('chanerr');
                                next;
                        }
                        push @nent, $_;
index 4207ca458f2eb902e5a3d0a0a2b901540832dcaa..e77d9957ad56f518a6e49b6d5ee420d9fe98114a 100644 (file)
@@ -11,6 +11,6 @@ use vars qw($version $subversion $build);
 
 $version = '1.55';
 $subversion = '0';
-$build = '24';
+$build = '25';
 
 1;