diff options
author | 2013-03-25 20:40:40 +0000 | |
---|---|---|
committer | 2013-03-25 20:40:40 +0000 | |
commit | 48950c12d106c85f315112191a0228d7b83b9510 (patch) | |
tree | 54e43d54484c1bfe9bb06a10ede0ba3e2fa52c08 /gnu/usr.bin/perl/ext/ODBM_File/ODBM_File.pm | |
parent | avoid null dereference affecting mod_perl, Perl RT bug 116441 (diff) | |
download | wireguard-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.pm | 6 |
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; |