Subject: | perl-5.12.3 complains on "Use of uninitialized value" |
probably just a cosmetic change, but "make test" running under perl
5.12.3 gives "Use of uninitialized value" warnings
proposed fix:
--- Mail-DKIM-0.39/lib/Mail/DKIM/PublicKey.pm Sat Jan 23 18:44:52 2010
+++ Mail-DKIM-0.39a/lib/Mail/DKIM/PublicKey.pm Wed Mar 2 09:55:46 2011
@@ -83,6 +83,7 @@
my %prms = @_;
my ($query_type, $query_options) = split(/\//, $prms{Protocol}, 2);
+ $query_type = "" if !defined $query_type;
if (lc($query_type) ne "dns")
{
die "unknown query type '$query_type'\n";