]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 253696: work around NAME_lc bug in ActiveState Perl on Win32
authorjustdave%bugzilla.org <>
Mon, 13 Sep 2004 03:22:17 +0000 (03:22 +0000)
committerjustdave%bugzilla.org <>
Mon, 13 Sep 2004 03:22:17 +0000 (03:22 +0000)
Patch by Byron Jones <bugzilla@glob.com.au>
r=jouni,bbaetz a=justdave

Bugzilla/DB.pm

index 445e29500d50bc07299c1dcfd16fd2888ab06906..26a3a007273da24f15d0e1ae61100474f59fa003 100644 (file)
@@ -152,8 +152,10 @@ sub _connect {
                              Password => $db_pass,
                              ShowErrorStatement => 1,
                              HandleError => \&_handle_error,
-                             FetchHashKeyName => 'NAME_lc',
                              TaintIn => 1,
+                             FetchHashKeyName => 'NAME',  
+                             # Note: NAME_lc causes crash on ActiveState Perl
+                             # 5.8.4 (see Bug 253696)
                            });
 
     return $dbh;