Author: mjevans
Date: Tue Feb 14 01:43:16 2012
New Revision: 15151

Modified:
   dbi/trunk/Changes
   dbi/trunk/lib/DBD/File.pm

Log:
Fix for rt74975


Modified: dbi/trunk/Changes
==============================================================================
--- dbi/trunk/Changes   (original)
+++ dbi/trunk/Changes   Tue Feb 14 01:43:16 2012
@@ -10,6 +10,7 @@
 
   Fixed compiler warnings in Driver_xst.h (Martin J. Evans)
   Fixed compiler warning in DBI.xs (H.Merijn Brand)
+  RT74975 - Fixed Gofer tests failing on Windows (Manoj Kumar)
 
   Significantly optimized method dispatch via cache (Dave Mitchell)
   Significantly optimized DBI internals for threads (Dave Mitchell)

Modified: dbi/trunk/lib/DBD/File.pm
==============================================================================
--- dbi/trunk/lib/DBD/File.pm   (original)
+++ dbi/trunk/lib/DBD/File.pm   Tue Feb 14 01:43:16 2012
@@ -117,7 +117,7 @@
     my $str = shift;
     ref     $str and return "";
     defined $str or  return "";
-    $str =~ s/([;:])/\\$1/g;
+    $str =~ s/([;:\\])/\\$1/g;
     return $str;
     } # dsn_quote
 

Reply via email to