if node is isolated, stay in old protocol
authorDirk Koopman <djk@tobit.co.uk>
Sat, 23 Jun 2007 22:12:32 +0000 (23:12 +0100)
committerDirk Koopman <djk@tobit.co.uk>
Sat, 23 Jun 2007 22:12:32 +0000 (23:12 +0100)
perl/DXProtHandle.pm
perl/Version.pm

index 99eb71d27464c27299708a1a2590390ecbd84a01..51585f01facee34ea0e1cabc536132d9c1bafaa6 100644 (file)
@@ -615,7 +615,7 @@ sub handle_18
                        $self->sort('S');
                }
 #              $self->{handle_xml}++ if DXXml::available() && $_[1] =~ /\bxml/;
-               if ($_[1] =~ /\bpc9x/) {
+               if (!$self->{isolate} && $_[1] =~ /\bpc9x/) {
                        $self->{do_pc9x} = 1;
                        dbg("Do px9x set on $self->{call}");
                }
index 8816fa97cb375e59bd9b9dfc3fe99886ffa22b94..d4abfda344af1e01ce31ca2c3e5b36690d64c7b9 100644 (file)
@@ -11,6 +11,6 @@ use vars qw($version $subversion $build);
 
 $version = '1.54';
 $subversion = '0';
-$build = '71';
+$build = '72';
 
 1;