Your message dated Sat, 12 Sep 2020 17:31:13 +0200
with message-id <[email protected]>
and subject line Re: Bug#962334: .key files not handled correctly in TSIG.pm in
version 1.24
has caused the Debian Bug report #962334,
regarding .key files not handled correctly in TSIG.pm in version 1.24
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
962334: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=962334
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: libnet-dns-perl
Version: 1.24-1
Hello,
after upgrading from 1.23 to 1.24 I get the following error:
Use of uninitialized value $_[0] in join or string at
/usr/share/perl5/Net/DNS/RR/TSIG.pm line 182.
when I call sign_tsig() with a .key file.
I think the reason is that .key files are now handled as .private file due to
the new code in TSIG.pm, line 384:
$filename =~ m/^K([^+]+)\+\d+\+\d+\./; # BIND
dnssec-keygen
my $key = $1;
if ( $key && $filename =~ /\.key$/ ) {
If it is a .key file, $key will usually be undefined and the code path for
handling .key files will therefore not be entered.
If I change the condition to
if ( ! $key || $filename =~ /\.key$/ ) {
sign_tsig() works fine again.
Regards,
--
Wolfgang Walter
Studentenwerk München
Anstalt des öffentlichen Rechts
--- End Message ---
--- Begin Message ---
Version: 1.25-1
On Sat, 06 Jun 2020 14:21:11 +0200, Wolfgang Walter wrote:
> after upgrading from 1.23 to 1.24 I get the following error:
> Use of uninitialized value $_[0] in join or string at
> /usr/share/perl5/Net/DNS/RR/TSIG.pm line 182.
According to the upstream ticket at
https://rt.cpan.org/Public/Bug/Display.html?id=132772
this bug is fixed in 1.25, therefore I'm closing the Debian bug with
this version.
Cheers,
gregor
--
.''`. https://info.comodo.priv.at -- Debian Developer https://www.debian.org
: :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D 85FA BB3A 6801 8649 AA06
`. `' Member VIBE!AT & SPI Inc. -- Supporter Free Software Foundation Europe
`- NP: Supertramp: Goodbye Stranger
signature.asc
Description: Digital Signature
--- End Message ---