From 7294f68b3b3474183434ae05b43a344f1bfce6db Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Mon, 29 May 2000 22:08:04 +0000 Subject: `path metric' and `disable after error' are switches, not numeric clauses. --- proto/bgp/config.Y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'proto/bgp/config.Y') diff --git a/proto/bgp/config.Y b/proto/bgp/config.Y index 397f9dd..52ad731 100644 --- a/proto/bgp/config.Y +++ b/proto/bgp/config.Y @@ -59,14 +59,14 @@ bgp_proto: | bgp_proto KEEPALIVE TIME expr ';' { BGP_CFG->keepalive_time = $4; } | bgp_proto MULTIHOP expr 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 expr ';' { BGP_CFG->compare_path_lengths = $4; } + | bgp_proto PATH METRIC bool ';' { BGP_CFG->compare_path_lengths = $4; } | bgp_proto DEFAULT BGP_MED expr ';' { BGP_CFG->default_med = $4; } | bgp_proto DEFAULT BGP_LOCAL_PREF expr ';' { BGP_CFG->default_local_pref = $4; } | bgp_proto SOURCE ADDRESS ipa ';' { BGP_CFG->source_addr = $4; } | bgp_proto START DELAY TIME expr ';' { BGP_CFG->start_delay_time = $5; } | bgp_proto ERROR FORGET TIME expr ';' { BGP_CFG->error_amnesia_time = $5; } | bgp_proto ERROR WAIT TIME expr ',' expr ';' { BGP_CFG->error_delay_time_min = $5; BGP_CFG->error_delay_time_max = $7; } - | bgp_proto DISABLE AFTER ERROR ';' { BGP_CFG->disable_after_error = 1; } + | bgp_proto DISABLE AFTER ERROR bool ';' { BGP_CFG->disable_after_error = $5; } ; CF_ADDTO(dynamic_attr, BGP_PATH -- cgit v1.2.3