We found a small incompatability with the method we used to implement
logging with 2.56+

This has been fixed, and should now work for perl 5.005, and likely 5.004
and
lower (any which have Symbol as one of the standard modules).

The patch, if you're interested, is below - will be in the next client
release.


Index: XML_Client.pm
===================================================================
--- XML_Client.pm
+++ XML_Client.pm
@@ -196,7 +196,9 @@
               };

     if ( exists $args{ xml_logfile } and $args{ xml_logfile } ) {
-       my $fh;
+       require Symbol;
+
+       my $fh = Symbol::gensym();
        open $fh, ">>$args{ xml_logfile }" or
                die "Can't open XML logfile, $args{ xml_logfile } for
append: $!";

Charles Daminato
OpenSRS Product Manager
Tucows Inc. - [EMAIL PROTECTED]

Reply via email to