actually commit the set/isolate patch!
authorDirk Koopman <djk@tobit.co.uk>
Sat, 23 Jun 2007 23:10:05 +0000 (00:10 +0100)
committerDirk Koopman <djk@tobit.co.uk>
Sat, 23 Jun 2007 23:10:05 +0000 (00:10 +0100)
perl/DXProtHandle.pm
perl/Version.pm

index 51585f01facee34ea0e1cabc536132d9c1bafaa6..e1b31bafbdf50ee15b27b46e7ee83f92ffc446ed 100644 (file)
@@ -615,9 +615,13 @@ sub handle_18
                        $self->sort('S');
                }
 #              $self->{handle_xml}++ if DXXml::available() && $_[1] =~ /\bxml/;
-               if (!$self->{isolate} && $_[1] =~ /\bpc9x/) {
-                       $self->{do_pc9x} = 1;
-                       dbg("Do px9x set on $self->{call}");
+               if ($_[1] =~ /\bpc9x/) {
+                       if ($self->{isolate}) {
+                               dbg("pc9x recognised, but is isolated, using old protocol");
+                       } else {
+                               $self->{do_pc9x} = 1;
+                               dbg("Do px9x set on $self->{call}");
+                       }
                }
        } else {
                dbg("Unknown software");
index 7c702ce1adb956e6debb196813e62eec9f5d84c7..87cfd674cf0e85ca8fcc7efd40eebd4632bf08b1 100644 (file)
@@ -11,6 +11,6 @@ use vars qw($version $subversion $build);
 
 $version = '1.54';
 $subversion = '0';
-$build = '75';
+$build = '76';
 
 1;