Skip Menu |

This queue is for tickets about the DNS-ZoneParse CPAN distribution.

Report information
The Basics
Id: 2253
Status: resolved
Priority: 0/
Queue: DNS-ZoneParse

People
Owner: Nobody in particular
Requestors: alex.woods [...] concept2100.co.uk
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.84
Fixed in: (no value)



Subject: ZoneParse doesn't read file (at least in my environment)
Seems to be a variable name case issue - see the attached patch. I'm using Debian Linux 3.0r1, perl v5.6.1 built for i386-linux.
--- ZoneParse.pm.orig Tue Mar 18 13:46:51 2003 +++ ZoneParse.pm Tue Mar 18 13:46:24 2003 @@ -158,9 +158,9 @@ $zone_contents = $$zonefile; } else { local *inZone; - if (open(inZONE, "$zonefile")) { + if (open(inZone, "$zonefile")) { $zone_contents = do {local $/; <inZone>}; - close(inZONE); + close(inZone); } else { croak qq[DNS::ZoneParse Could not open input file: "$zonefile":$!] }
From: Simon Flack
Thanks for the bug report. Version 0.85 fixes this. I'm uploading it to CPAN now. --simonflk [guest - Tue Mar 18 09:24:57 2003]: Show quoted text
> Seems to be a variable name case issue - see the attached patch. > I'm using Debian Linux 3.0r1, perl v5.6.1 built for i386-linux.
Hi, Thanks for reporting both these bugs. I've uploaded a new version which (I hope) addresses them. I responded to the bugs, but hadn't logged in so I don't know if RT sent you an email. If not, you can read my responses at: http://rt.cpan.org/NoAuth/Bugs.html?Dist=DNS-ZoneParse&ShowAll=1 regards --simon
Show quoted text
> Thanks for reporting both these bugs. I've uploaded a new version > which (I hope) addresses them.
No problem. I'll give the new version a whirl. Show quoted text
> > I responded to the bugs, but hadn't logged in so I don't know if RT > sent you an email.
Just to let you know, it sent me an email for each comment. Thanks for making this module available, by the way. No doubt it has saved me many hours of bouncing my brain off of the wall trying to get the perl regular expressions just right by myself ;) Cheers, Alex
Show quoted text
> Thanks for making this module available, by the way. No doubt it has > saved me many hours of bouncing my brain off of the wall trying to > get the perl regular expressions just right by myself ;)
Thanks, it's always good to hear that this is useful to people! --simon