]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Bugfix - bird needed double ';' after rfc1583compat.
authorOndrej Filip <feela@network.cz>
Fri, 16 Jul 2004 07:22:43 +0000 (07:22 +0000)
committerOndrej Filip <feela@network.cz>
Fri, 16 Jul 2004 07:22:43 +0000 (07:22 +0000)
proto/ospf/config.Y

index 4a625498987e9ec2d65b779f055a81c03954a784..7a07e6e25614d679ee1027f61321d619b87554ec 100644 (file)
@@ -49,7 +49,7 @@ ospf_proto:
 
 ospf_proto_item:
    proto_item
- | RFC1583COMPAT bool ';' { OSPF_CFG->rfc1583 = $2; }
+ | RFC1583COMPAT bool { OSPF_CFG->rfc1583 = $2; }
  | TICK expr { OSPF_CFG->tick = $2 ; if($2<=0) cf_error("Tick must be greater than zero"); }
  | ospf_area '}'
  ;