Skip to content

Commit d5d7b05

Browse files
author
caleishm
committed
Fix for die message (use 0 instead of )
1 parent e04b8cc commit d5d7b05

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

Changes

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2006-02-14
2+
- Fix in File::Heap::add for the die message when DB_File::put
3+
fails (credit to Eli Yelluas).
4+
15
2006-02-01
26
- Bugfix release (2.04)
37
- Fix for failure to call load_callback when verify_callback
@@ -23,12 +27,12 @@
2327

2428
2003-08-18
2529
- Bugfix release (2.01)
26-
o Fixed parsing of all digit expiry times
27-
o Fixed use of scalar validity in Cache::Memory
28-
o Allowed validity to be set on non-existant entry
29-
(sets entry data to zero length)
30-
o Fixed package name for Cache::Memory::HeapElem
31-
o Documentation fixes
30+
- Fixed parsing of all digit expiry times
31+
- Fixed use of scalar validity in Cache::Memory
32+
- Allowed validity to be set on non-existant entry
33+
(sets entry data to zero length)
34+
- Fixed package name for Cache::Memory::HeapElem
35+
- Documentation fixes
3236

3337
2003-07-07
3438
- Initial release (2.00)

lib/Cache/File/Heap.pm

+2-2
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ sub add {
117117
defined $key or croak "key undefined";
118118
defined $val or croak "value undefined";
119119
# return code from DB_File is 0 on success.....
120-
$self->_db->put($key, $val) and die "Heap add failed: $@";
120+
$self->_db->put($key, $val) and die "Heap add failed: $!";
121121
}
122122

123123
=item $h->delete($key, $val)
@@ -256,6 +256,6 @@ This module is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND,
256256
either expressed or implied. This program is free software; you can
257257
redistribute or modify it under the same terms as Perl itself.
258258
259-
$Id: Heap.pm,v 1.6 2006-01-31 15:23:58 caleishm Exp $
259+
$Id: Heap.pm,v 1.7 2006-02-14 05:55:21 caleishm Exp $
260260
261261
=cut

0 commit comments

Comments
 (0)