Skip Menu |

This queue is for tickets about the Digest-SHA CPAN distribution.

Report information
The Basics
Id: 105372
Status: resolved
Priority: 0/
Queue: Digest-SHA

People
Owner: mshelor [...] cpan.org
Requestors: dolmen [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: 5.95
Fixed in: 5.96



Subject: [PATCH] @EXPORT is not used
Hi,

In Digest/SHA.pm line 7:

     use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);

But Digest::SHA does not export anything by default: @EXPORT is not used.

Here is a patch attached.


-- 
Olivier Mengué - http://perlresume.org/DOLMEN - https://gratipay.com/dolmen/
Subject: remove-@EXPORT.patch
--- lib/Digest/SHA.pm.orig 2015-01-10 21:09:47.000000000 +0100 +++ lib/Digest/SHA.pm 2015-06-19 10:21:29.650836014 +0200 @@ -4,7 +4,7 @@ use strict; use warnings; -use vars qw($VERSION @ISA @EXPORT @EXPORT_OK); +use vars qw($VERSION @ISA @EXPORT_OK); use Fcntl; use integer;
Thanks for the patch. Mark