summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/ext/ODBM_File/ODBM_File.pm
diff options
context:
space:
mode:
authorsthen <sthen@openbsd.org>2013-03-25 20:40:40 +0000
committersthen <sthen@openbsd.org>2013-03-25 20:40:40 +0000
commit48950c12d106c85f315112191a0228d7b83b9510 (patch)
tree54e43d54484c1bfe9bb06a10ede0ba3e2fa52c08 /gnu/usr.bin/perl/ext/ODBM_File/ODBM_File.pm
parentavoid null dereference affecting mod_perl, Perl RT bug 116441 (diff)
downloadwireguard-openbsd-48950c12d106c85f315112191a0228d7b83b9510.tar.xz
wireguard-openbsd-48950c12d106c85f315112191a0228d7b83b9510.zip
merge/resolve conflicts
(some more to do after this one)
Diffstat (limited to 'gnu/usr.bin/perl/ext/ODBM_File/ODBM_File.pm')
-rw-r--r--gnu/usr.bin/perl/ext/ODBM_File/ODBM_File.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/perl/ext/ODBM_File/ODBM_File.pm b/gnu/usr.bin/perl/ext/ODBM_File/ODBM_File.pm
index 044e493055a..958232cb7fd 100644
--- a/gnu/usr.bin/perl/ext/ODBM_File/ODBM_File.pm
+++ b/gnu/usr.bin/perl/ext/ODBM_File/ODBM_File.pm
@@ -4,12 +4,12 @@ use strict;
use warnings;
require Tie::Hash;
-use XSLoader ();
+require XSLoader;
our @ISA = qw(Tie::Hash);
-our $VERSION = "1.07";
+our $VERSION = "1.12";
-XSLoader::load 'ODBM_File', $VERSION;
+XSLoader::load();
1;