summaryrefslogtreecommitdiff
path: root/ext/Storable
diff options
context:
space:
mode:
authorSlaven Rezic <slaven@rezic.de>2002-10-10 18:23:22 +0200
committerhv <hv@crypt.org>2002-10-17 13:34:01 +0000
commitd1e2299c1c3e13c365c4beee74f1481ec4de334a (patch)
tree0cefcbc3a398e40451dd3d1261a3a54254403953 /ext/Storable
parent24a7a40d02cc0ea4a7e6fc143f53dd60b2d0d047 (diff)
downloadperl-d1e2299c1c3e13c365c4beee74f1481ec4de334a.tar.gz
Re: [perl #17061] no strict 'garbage'
Message-ID: <87ptui5q5h.fsf@vran.herceg.de> p4raw-id: //depot/perl@18024
Diffstat (limited to 'ext/Storable')
-rw-r--r--ext/Storable/Storable.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Storable/Storable.pm b/ext/Storable/Storable.pm
index 1a62e622f7..a3807774ea 100644
--- a/ext/Storable/Storable.pm
+++ b/ext/Storable/Storable.pm
@@ -813,7 +813,7 @@ compartment:
use strict;
my $safe = new Safe;
# because of opcodes used in "use strict":
- $safe->permit(qw(:default require caller));
+ $safe->permit(qw(:default require));
local $Storable::Deparse = 1;
local $Storable::Eval = sub { $safe->reval($_[0]) };
my $serialized = freeze(sub { 42 });