Skip Menu |

This queue is for tickets about the BIND-Conf_Parser CPAN distribution.

Report information
The Basics
Id: 82218
Status: new
Priority: 0/
Queue: BIND-Conf_Parser

People
Owner: Nobody in particular
Requestors: Xavier (no email address)
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.95
Fixed in: (no value)



Subject: Unable to handle masters with port declarations
Hi, a Debian user reports the following (see http://bugs.debian.org/292315): The parser is unable to handle masters with port declarations in a slave zone specification. This example won't be parsed correctly: --- zone "example.com" { type slave; file "sec/example.com"; masters port 52 { 1.2.3.4; 2.3.4.5; }; }; --- leads to parse error: Expected Fwuh? `', saw 'port' following `masters' at <filename>:4 at /usr/share/perl5/BIND/Conf_Parser.pm line 23 This one is parsed correctly: zone "example.com" { type slave; file "sec/example.com"; masters { 1.2.3.4; 2.3.4.5; }; }; Happy hacking... Alex