]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1165. [bug] We were rejecting notify-source{-v6} in zone clauses.
authorMark Andrews <marka@isc.org>
Tue, 18 Dec 2001 23:23:32 +0000 (23:23 +0000)
committerMark Andrews <marka@isc.org>
Tue, 18 Dec 2001 23:23:32 +0000 (23:23 +0000)
CHANGES
lib/isccfg/parser.c

diff --git a/CHANGES b/CHANGES
index fe6a32c8e9072c2228bc1d52b7cac6336d558bc7..6422df36f93142e8f0b2d6cf7676bf807bd7a943 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+1165.  [bug]           We were rejecting notify-source{-v6} in zone clauses.
+
 1164.  [bug]           Empty masters clauses in slave / stub zones were not
                        handled gracefully.  [RT #2262]
 
index eada6d0ff508e08bcb0f55df398aa888984bd12a..54610375705ef93d654b73125f2d5b68a74aa327 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: parser.c,v 1.94 2001/12/13 06:31:00 gson Exp $ */
+/* $Id: parser.c,v 1.95 2001/12/18 23:23:32 marka Exp $ */
 
 #include <config.h>
 
@@ -916,8 +916,6 @@ view_clauses[] = {
         */
        { "query-source", &cfg_type_querysource4, 0 },
        { "query-source-v6", &cfg_type_querysource6, 0 },
-       { "notify-source", &cfg_type_sockaddr4wild, 0 },
-       { "notify-source-v6", &cfg_type_sockaddr6wild, 0 },
        { "cleaning-interval", &cfg_type_uint32, 0 },
        { "min-roots", &cfg_type_uint32, CFG_CLAUSEFLAG_NOTIMP },
        { "lame-ttl", &cfg_type_uint32, 0 },
@@ -954,6 +952,8 @@ zone_clauses[] = {
        { "allow-update-forwarding", &cfg_type_bracketed_aml, 0 },
        { "allow-notify", &cfg_type_bracketed_aml, 0 },
        { "notify", &cfg_type_notifytype, 0 },
+       { "notify-source", &cfg_type_sockaddr4wild, 0 },
+       { "notify-source-v6", &cfg_type_sockaddr6wild, 0 },
        { "also-notify", &cfg_type_portiplist, 0 },
        { "dialup", &cfg_type_dialuptype, 0 },
        { "forward", &cfg_type_forwardtype, 0 },