]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix for parse end of forward-zone, stub-zone and view.
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Tue, 21 May 2024 10:04:57 +0000 (12:04 +0200)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Tue, 21 May 2024 10:04:57 +0000 (12:04 +0200)
doc/Changelog
util/configparser.y

index ac5c03a137c13cb08f67bef8b080e3ddbdf70e77..b66edae81fb49cee58cc335ee3b51ebf26dbcd32 100644 (file)
@@ -3,6 +3,7 @@
          ub_ctx_set_fwd.
        - Fix to print a parse error when config is read with no name for
          a forward-zone, stub-zone or view.
+       - Fix for parse end of forward-zone, stub-zone and view.
 
 17 May 2024: Yorgos
        - Merge #1069: Fix unbound-control stdin commands for multi-process
index 2e82da5d7ce516de98ecdf498c3995317c8aef08..5f42126f74f577f061105b54e3feb3b1a3e73db3 100644 (file)
@@ -357,7 +357,7 @@ stubstart: VAR_STUB_ZONE
                }
        }
        ;
-contents_stub: contents_stub content_stub
+contents_stub: content_stub contents_stub
        |
        {
                /* stub end */
@@ -382,7 +382,7 @@ forwardstart: VAR_FORWARD_ZONE
                }
        }
        ;
-contents_forward: contents_forward content_forward
+contents_forward: content_forward contents_forward
        |
        {
                /* forward end */
@@ -407,7 +407,7 @@ viewstart: VAR_VIEW
                }
        }
        ;
-contents_view: contents_view content_view
+contents_view: content_view contents_view
        |
        {
                /* view end */