]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
KEEPALIVE TIME ought to set keepalive time, not connect retry time :)
authorMartin Mares <mj@ucw.cz>
Mon, 8 May 2000 22:32:17 +0000 (22:32 +0000)
committerMartin Mares <mj@ucw.cz>
Mon, 8 May 2000 22:32:17 +0000 (22:32 +0000)
proto/bgp/config.Y

index c4514d1ca26cffd5b4a6c3d10f300ea8aa5435df..d864041c51a6fb552fee91eb898f1d53e30ebed2 100644 (file)
@@ -56,7 +56,7 @@ bgp_proto:
  | bgp_proto HOLD TIME NUM ';' { BGP_CFG->hold_time = $4; }
  | bgp_proto STARTUP HOLD TIME NUM ';' { BGP_CFG->initial_hold_time = $5; }
  | bgp_proto CONNECT RETRY TIME NUM ';' { BGP_CFG->connect_retry_time = $5; }
- | bgp_proto KEEPALIVE TIME NUM ';' { BGP_CFG->connect_retry_time = $4; }
+ | bgp_proto KEEPALIVE TIME NUM ';' { BGP_CFG->keepalive_time = $4; }
  | bgp_proto MULTIHOP NUM VIA IPA ';' { BGP_CFG->multihop = $3; BGP_CFG->multihop_via = $5; }
  | bgp_proto NEXT HOP SELF ';' { BGP_CFG->next_hop_self = 1; }
  | bgp_proto PATH METRIC NUM ';' { BGP_CFG->compare_path_lengths = $4; }