Author: REHSACK
Date: Wed May 26 02:03:57 2010
New Revision: 14055
Modified:
dbi/trunk/lib/DBD/File.pm
Log:
- attribute f_ext must not be initialized to an empty string to allow
DBD::DBM to override known extensions when noone set an user extension
- remove initialization of depreciated attribute f_map
Modified: dbi/trunk/lib/DBD/File.pm
==============================================================================
--- dbi/trunk/lib/DBD/File.pm (original)
+++ dbi/trunk/lib/DBD/File.pm Wed May 26 02:03:57 2010
@@ -98,8 +98,6 @@
$this->func ("init_valid_attributes");
my ($var, $val);
$this->{f_dir} = File::Spec->curdir ();
- $this->{f_ext} = "";
- $this->{f_map} = {};
while (length $dbname) {
if ($dbname =~ s/^((?:[^\\;]|\\.)*?);//s) {
$var = $1;