summaryrefslogtreecommitdiff
path: root/cpan/DB_File
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2012-01-24 22:46:59 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2012-01-24 22:46:59 +0000
commitacb29889980031300ef2b368379211e68703d663 (patch)
tree8a6309f13681c1114d499ed906a1bd1e7f4f2e1e /cpan/DB_File
parentda60b1cba9b0c916427ac3d445d7b8604cb52295 (diff)
downloadperl-acb29889980031300ef2b368379211e68703d663.tar.gz
Update DB_File to CPAN version 1.825
[DELTA] 1.825 24 Jan 2012 * t/db-btree.t - fix use of "length @array" [RT ##74336] and [perl #108970]
Diffstat (limited to 'cpan/DB_File')
-rw-r--r--cpan/DB_File/Changes5
-rw-r--r--cpan/DB_File/DB_File.pm4
-rw-r--r--cpan/DB_File/DB_File.xs2
-rw-r--r--cpan/DB_File/dbinfo2
-rw-r--r--cpan/DB_File/t/db-btree.t4
5 files changed, 11 insertions, 6 deletions
diff --git a/cpan/DB_File/Changes b/cpan/DB_File/Changes
index f527911f5a..577ecb2972 100644
--- a/cpan/DB_File/Changes
+++ b/cpan/DB_File/Changes
@@ -1,3 +1,8 @@
+1.825 24 Jan 2012
+
+ * t/db-btree.t - fix use of "length @array"
+ [RT ##74336]
+
1.824 6 Aug 2011
* Amendments to tests to work in blead
diff --git a/cpan/DB_File/DB_File.pm b/cpan/DB_File/DB_File.pm
index d7fba44ebc..4f41f59411 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.824" ;
+$VERSION = "1.825" ;
$VERSION = eval $VERSION; # needed for dev releases
{
@@ -2279,7 +2279,7 @@ archive in F<src/misc/db.1.85.tar.gz>.
=head1 COPYRIGHT
-Copyright (c) 1995-2007 Paul Marquess. All rights reserved. This program
+Copyright (c) 1995-2012 Paul Marquess. All rights reserved. This program
is free software; you can redistribute it and/or modify it under the
same terms as Perl itself.
diff --git a/cpan/DB_File/DB_File.xs b/cpan/DB_File/DB_File.xs
index e61dc134b4..6790d5d3a6 100644
--- a/cpan/DB_File/DB_File.xs
+++ b/cpan/DB_File/DB_File.xs
@@ -8,7 +8,7 @@
All comments/suggestions/problems are welcome
- Copyright (c) 1995-2009 Paul Marquess. All rights reserved.
+ Copyright (c) 1995-2012 Paul Marquess. All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
diff --git a/cpan/DB_File/dbinfo b/cpan/DB_File/dbinfo
index b8cd65a9a2..e8abc974b3 100644
--- a/cpan/DB_File/dbinfo
+++ b/cpan/DB_File/dbinfo
@@ -7,7 +7,7 @@
# Version: 1.06
# Date 27th March 2008
#
-# Copyright (c) 1998-2008 Paul Marquess. All rights reserved.
+# Copyright (c) 1998-2012 Paul Marquess. All rights reserved.
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.
diff --git a/cpan/DB_File/t/db-btree.t b/cpan/DB_File/t/db-btree.t
index 29c70a1743..678393bf84 100644
--- a/cpan/DB_File/t/db-btree.t
+++ b/cpan/DB_File/t/db-btree.t
@@ -566,9 +566,9 @@ sub ArrayCompare
return 0 if @$a != @$b ;
- foreach (1 .. length @$a)
+ foreach (1 .. @$a - 1)
{
- return 0 unless $$a[$_] eq $$b[$_] ;
+ return 0 unless $$a[$_] eq $$b[$_];
}
1 ;