Author: ask
Date: Wed Jul 25 14:28:23 2007
New Revision: 9799

Modified:
   dbi/trunk/lib/DBD/Gofer/Transport/Base.pm

Log:
fix typo in the error handling


Modified: dbi/trunk/lib/DBD/Gofer/Transport/Base.pm
==============================================================================
--- dbi/trunk/lib/DBD/Gofer/Transport/Base.pm   (original)
+++ dbi/trunk/lib/DBD/Gofer/Transport/Base.pm   Wed Jul 25 14:28:23 2007
@@ -58,7 +58,7 @@
         if ($@) {
             return $self->transport_timedout("transmit_request", $to)
                 if $@ eq "TIMEOUT\n";
-            return self->new_response({ err => 1, errstr => $@ });
+            return $self->new_response({ err => 1, errstr => $@ });
         }
 
         return $response;

Reply via email to