]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1162. [bug] The allow-notify option was not accepted in slave
authorAndreas Gustafsson <source@isc.org>
Thu, 13 Dec 2001 06:31:00 +0000 (06:31 +0000)
committerAndreas Gustafsson <source@isc.org>
Thu, 13 Dec 2001 06:31:00 +0000 (06:31 +0000)
                        zone statements.

CHANGES
lib/isccfg/parser.c

diff --git a/CHANGES b/CHANGES
index d1129445b2a2723c17935f7bc527369077c80844..895b26d53f3644e50a6c7d4058c2b6966eae13df 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -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]
 
index 4870d36f07a9d63defcf9a8bc88ff5dc63a47a16..eada6d0ff508e08bcb0f55df398aa888984bd12a 100644 (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 },