diff options
| author | Christian Franke <chris@opensourcerouting.org> | 2018-10-09 17:59:46 +0200 | 
|---|---|---|
| committer | Christian Franke <chris@opensourcerouting.org> | 2018-10-09 17:59:46 +0200 | 
| commit | 490a6fc716fb90cde24c47328e305baf0dc2c71d (patch) | |
| tree | b059f5c560f1a77336414e9a62175afb41a73d76 /isisd/isis_bfd.c | |
| parent | a5eba4e9a55960f696c1e4906f9fc2ac59c1fa81 (diff) | |
isisd: don't add deprecated bfd command
Diffstat (limited to 'isisd/isis_bfd.c')
| -rw-r--r-- | isisd/isis_bfd.c | 9 | 
1 files changed, 1 insertions, 8 deletions
diff --git a/isisd/isis_bfd.c b/isisd/isis_bfd.c index 59d88e9e3f..c9d2ea8e21 100644 --- a/isisd/isis_bfd.c +++ b/isisd/isis_bfd.c @@ -330,14 +330,7 @@ static int bfd_circuit_write_settings(struct isis_circuit *circuit,  	if (!bfd_info)  		return 0; -#if HAVE_BFDD == 0 -	if (CHECK_FLAG(bfd_info->flags, BFD_FLAG_PARAM_CFG)) { -		vty_out(vty, " %s bfd %" PRIu8 " %" PRIu32 " %" PRIu32 "\n", -			PROTO_NAME, bfd_info->detect_mult, -			bfd_info->required_min_rx, bfd_info->desired_min_tx); -	} else -#endif -		vty_out(vty, " %s bfd\n", PROTO_NAME); +	vty_out(vty, " %s bfd\n", PROTO_NAME);  	return 1;  }  | 
