Author: mjevans
Date: Fri Mar 23 01:30:29 2012
New Revision: 15245

Modified:
   dbi/trunk/Changes
   dbi/trunk/DBI.pm

Log:
Stop tracing the password in the connected method


Modified: dbi/trunk/Changes
==============================================================================
--- dbi/trunk/Changes   (original)
+++ dbi/trunk/Changes   Fri Mar 23 01:30:29 2012
@@ -9,6 +9,8 @@
 =head2 Changes in DBI 1.619-TRIAL (svn r15202) 25rd February 2012
 
   Further method dispatch optimizations thanks to Dave Mitchell.
+  Fixed the connected method to stop showing the password in
+    trace file (Martin J. Evans).
 
 =head2 Changes in DBI 1.618 (svn r15170) 25rd February 2012
 

Modified: dbi/trunk/DBI.pm
==============================================================================
--- dbi/trunk/DBI.pm    (original)
+++ dbi/trunk/DBI.pm    Fri Mar 23 01:30:29 2012
@@ -419,7 +419,7 @@
        data_sources    => { U =>[1,2,'[\%attr]' ], O=>0x0200 },
        take_imp_data   => { U =>[1,1], O=>0x10000 },
        clone           => { U =>[1,2,'[\%attr]'], T=>0x200 },
-       connected       => { U =>[1,0], O => 0x0004, T=>0x200 },
+       connected       => { U =>[1,0], O => 0x0004, T=>0x200, H=>3 },
        begin_work      => { U =>[1,2,'[ \%attr ]'], O=>0x0400, T=>0x1000 },
        commit          => { U =>[1,1], O=>0x0480|0x0800, T=>0x1000 },
        rollback        => { U =>[1,1], O=>0x0480|0x0800, T=>0x1000 },

Reply via email to