diff options
author | Ondrej Filip <feela@network.cz> | 2004-07-16 09:22:43 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2004-07-16 09:22:43 +0200 |
commit | 002ecc063845243613eb1ff40c3aa2a46c7013a1 (patch) | |
tree | e0fb4072c63c396bd8dab4c10cd94b51c166d2de /proto/ospf | |
parent | 4e9742bb597225d7cefc0ee08270f76db29b65f1 (diff) | |
download | bird-002ecc063845243613eb1ff40c3aa2a46c7013a1.tar bird-002ecc063845243613eb1ff40c3aa2a46c7013a1.zip |
Bugfix - bird needed double ';' after rfc1583compat.
Diffstat (limited to 'proto/ospf')
-rw-r--r-- | proto/ospf/config.Y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/config.Y b/proto/ospf/config.Y index 4a62549..7a07e6e 100644 --- a/proto/ospf/config.Y +++ b/proto/ospf/config.Y @@ -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 '}' ; |