From: Ondrej Zajicek (work) Date: Mon, 5 Oct 2020 13:01:11 +0000 (+0200) Subject: Doc: Fix missing semicolons X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96fc99f1ee6d68b6f90f68263c628ad8b6bb0b64;p=thirdparty%2Fbird.git Doc: Fix missing semicolons Thanks to Marco Gartmann for the bugreport. --- diff --git a/doc/bird.sgml b/doc/bird.sgml index 3dbb40b86..84cc7f77b 100644 --- a/doc/bird.sgml +++ b/doc/bird.sgml @@ -2828,18 +2828,18 @@ protocol ospf <name> { networks { <prefix>; <prefix> hidden; - } + }; external { <prefix>; <prefix> hidden; <prefix> tag <num>; - } + }; stubnet <prefix>; stubnet <prefix> { hidden <switch>; summary <switch>; cost <num>; - } + }; interface <interface pattern> [instance <num>] { cost <num>; stub <switch>; @@ -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 - } + }; }