summaryrefslogtreecommitdiff
path: root/cpan/DB_File
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2012-01-25 09:39:20 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2012-01-25 11:10:39 +0000
commitb34385a668b1275a17bd3e8d94e6c6decb78edf5 (patch)
treed21e0ee7d173203bcafdf763beb76e5d0d0539a8 /cpan/DB_File
parent0ba19efb0320c86f95c24abdad9fa7a6456463e6 (diff)
downloadperl-b34385a668b1275a17bd3e8d94e6c6decb78edf5.tar.gz
Update DB_File to CPAN version 1.826
[DELTA] 1.826 25 Jan 2012 * t/db-btree.t - fix use of "length @array" [RT ##74336]
Diffstat (limited to 'cpan/DB_File')
-rw-r--r--cpan/DB_File/Changes5
-rw-r--r--cpan/DB_File/DB_File.pm2
-rw-r--r--cpan/DB_File/t/db-btree.t2
3 files changed, 7 insertions, 2 deletions
diff --git a/cpan/DB_File/Changes b/cpan/DB_File/Changes
index 577ecb2972..200ff17f58 100644
--- a/cpan/DB_File/Changes
+++ b/cpan/DB_File/Changes
@@ -1,3 +1,8 @@
+1.826 25 Jan 2012
+
+ * t/db-btree.t - fix use of "length @array"
+ [RT ##74336]
+
1.825 24 Jan 2012
* t/db-btree.t - fix use of "length @array"
diff --git a/cpan/DB_File/DB_File.pm b/cpan/DB_File/DB_File.pm
index 4f41f59411..6b7dc103ef 100644
--- a/cpan/DB_File/DB_File.pm
+++ b/cpan/DB_File/DB_File.pm
@@ -165,7 +165,7 @@ our ($db_version, $use_XSLoader, $splice_end_array_no_length, $splice_end_array,
use Carp;
-$VERSION = "1.825" ;
+$VERSION = "1.826" ;
$VERSION = eval $VERSION; # needed for dev releases
{
diff --git a/cpan/DB_File/t/db-btree.t b/cpan/DB_File/t/db-btree.t
index 678393bf84..fb89a40855 100644
--- a/cpan/DB_File/t/db-btree.t
+++ b/cpan/DB_File/t/db-btree.t
@@ -566,7 +566,7 @@ sub ArrayCompare
return 0 if @$a != @$b ;
- foreach (1 .. @$a - 1)
+ foreach (0 .. @$a - 1)
{
return 0 unless $$a[$_] eq $$b[$_];
}