From: Ondrej Filip Date: Tue, 10 Aug 2004 17:47:32 +0000 (+0000) Subject: Bugfix in config.y X-Git-Tag: v1.2.0~247 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7715f9d9edb2cd5a230424881b1d5ec4e842738a;p=thirdparty%2Fbird.git Bugfix in config.y --- diff --git a/proto/ospf/config.Y b/proto/ospf/config.Y index 3a021db97..91cd5b856 100644 --- a/proto/ospf/config.Y +++ b/proto/ospf/config.Y @@ -127,7 +127,7 @@ ospf_iface_item: | POLL expr { OSPF_PATT->pollint = $2 ; if ($2<=0) cf_error("Poll int must be greater than zero"); } | RETRANSMIT expr { OSPF_PATT->rxmtint = $2 ; if ($2<=0) cf_error("Retransmit int must be greater than zero"); } | TRANSMIT DELAY expr { OSPF_PATT->inftransdelay = $3 ; if (($3<=0) || ($3>65535)) cf_error("Transmit delay must be in range 1-65535"); } - | PRIORITY expr { OSPF_PATT->priority = $2 ; if (($2<0) || ($2>255)) cf_error("Priority must be in range 0-255")} + | PRIORITY expr { OSPF_PATT->priority = $2 ; if (($2<0) || ($2>255)) cf_error("Priority must be in range 0-255"); } | WAIT expr { OSPF_PATT->waitint = $2 ; } | DEAD COUNT expr { OSPF_PATT->deadc = $3 ; if ($3<=1) cf_error("Dead count must be greater than one"); } | TYPE BROADCAST { OSPF_PATT->type = OSPF_IT_BCAST ; }