1162. [bug] The allow-notify option was not accepted in slave

zone statements.
This commit is contained in:
Andreas Gustafsson 2001-12-13 06:31:00 +00:00
parent 19f0d00107
commit 9cec4ca6ca
2 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,6 @@
1162. [bug] The allow-notify option was not accepted in slave
zone statements.
1161. [bug] named-checkzone looped on unbalanced brackets.
[RT #2248]

View file

@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: parser.c,v 1.93 2001/11/27 01:56:27 gson Exp $ */
/* $Id: parser.c,v 1.94 2001/12/13 06:31:00 gson Exp $ */
#include <config.h>
@ -897,7 +897,6 @@ options_clauses[] = {
static cfg_clausedef_t
view_clauses[] = {
{ "allow-notify", &cfg_type_bracketed_aml, 0 },
{ "allow-recursion", &cfg_type_bracketed_aml, 0 },
{ "allow-v6-synthesis", &cfg_type_bracketed_aml, 0 },
{ "sortlist", &cfg_type_bracketed_aml, 0 },
@ -953,6 +952,7 @@ zone_clauses[] = {
{ "allow-query", &cfg_type_bracketed_aml, 0 },
{ "allow-transfer", &cfg_type_bracketed_aml, 0 },
{ "allow-update-forwarding", &cfg_type_bracketed_aml, 0 },
{ "allow-notify", &cfg_type_bracketed_aml, 0 },
{ "notify", &cfg_type_notifytype, 0 },
{ "also-notify", &cfg_type_portiplist, 0 },
{ "dialup", &cfg_type_dialuptype, 0 },