]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Doc: Fix missing semicolons legacy
authorOndrej Zajicek (work) <santiago@crfreenet.org>
Mon, 5 Oct 2020 13:01:11 +0000 (15:01 +0200)
committerOndrej Zajicek (work) <santiago@crfreenet.org>
Mon, 5 Oct 2020 13:01:11 +0000 (15:01 +0200)
Thanks to Marco Gartmann for the bugreport.

doc/bird.sgml

index 3dbb40b867d9480b26c0f35adc3ff20d45e54fc2..84cc7f77bbf5ab6efc9b312a0df240ead1c3275e 100644 (file)
@@ -2828,18 +2828,18 @@ protocol ospf &lt;name&gt; {
                 networks {
                        &lt;prefix&gt;;
                        &lt;prefix&gt; hidden;
-               }
+               };
                 external {
                        &lt;prefix&gt;;
                        &lt;prefix&gt; hidden;
                        &lt;prefix&gt; tag &lt;num&gt;;
-               }
+               };
                stubnet &lt;prefix&gt;;
                stubnet &lt;prefix&gt; {
                        hidden &lt;switch&gt;;
                        summary &lt;switch&gt;;
                        cost &lt;num&gt;;
-               }
+               };
                interface &lt;interface pattern&gt; [instance &lt;num&gt;] {
                        cost &lt;num&gt;;
                        stub &lt;switch&gt;;
@@ -3316,7 +3316,7 @@ protocol ospf MyOSPF {
                networks {
                        172.16.1.0/24;
                        172.16.2.0/24 hidden;
-               }
+               };
                interface "-arc0" , "arc*" {
                        type nonbroadcast;
                        authentication none;
@@ -4170,12 +4170,12 @@ protocol static {
        route 10.2.0.0/24 via "arc0";   # Secondary network
        route 192.168.10.0/24 via 198.51.100.100 {
                ospf_metric1 = 20;      # Set extended attribute
-       }
+       };
        route 192.168.10.0/24 via 198.51.100.100 {
                ospf_metric2 = 100;     # Set extended attribute
                ospf_tag = 2;           # Set extended attribute
                bfd;                    # BFD-controlled route
-       }
+       };
 }
 </code>