]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
fix incorrect comments
authorEvan Hunt <each@isc.org>
Thu, 30 Aug 2018 07:48:37 +0000 (00:48 -0700)
committerEvan Hunt <each@isc.org>
Wed, 16 Jan 2019 07:20:38 +0000 (23:20 -0800)
bin/named/server.c

index 7b766e37c3e03aee6d08e992fcbd2b6b4ddd042a..e1e2e1b89fa2bd62be985a4ef7f72a907d91bb6b 100644 (file)
@@ -4995,16 +4995,10 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewlist,
                                      &view->sortlist));
 
        /*
-        * Configure default allow-notify, allow-update
-        * and allow-update-forwarding ACLs, so they can be
-        * inherited by zones. (Note these cannot be set at
+        * Configure default allow-update and allow-update-forwarding ACLs,
+        * so they can be inherited by zones.  (Note these cannot be set at
         * options/view level.)
         */
-       if (view->notifyacl == NULL) {
-               CHECK(configure_view_acl(vconfig, config, named_g_config,
-                                        "allow-notify", NULL, actx,
-                                        named_g_mctx, &view->notifyacl));
-       }
        if (view->updateacl == NULL) {
                CHECK(configure_view_acl(NULL, NULL, named_g_config,
                                         "allow-update", NULL, actx,
@@ -5017,14 +5011,19 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewlist,
        }
 
        /*
-        * Configure default allow-transer ACL so it can be inherited
-        * by zones. (Note this *can* be set at options or view level.)
+        * Configure default allow-transfer and allow-notify ACLs so they
+        * can be inherited by zones.
         */
        if (view->transferacl == NULL) {
                CHECK(configure_view_acl(vconfig, config, named_g_config,
                                         "allow-transfer", NULL, actx,
                                         named_g_mctx, &view->transferacl));
        }
+       if (view->notifyacl == NULL) {
+               CHECK(configure_view_acl(vconfig, config, named_g_config,
+                                        "allow-notify", NULL, actx,
+                                        named_g_mctx, &view->notifyacl));
+       }
 
        obj = NULL;
        result = named_config_get(maps, "provide-ixfr", &obj);