From 2008912b56abbf3167faf9b787df76605684d9e1 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Thu, 2 Dec 2021 17:07:14 +0000 Subject: fib: Fix the display (or lack of) for fib node types in dependent children lists Type: fix When registering a new FIB node type, no name was required on the API, and so no name was printed. Signed-off-by: Neale Ranns Change-Id: I8a99cf29c194637a550061b0a5e9782ffe8b31dd --- src/plugins/abf/abf_policy.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/plugins/abf/abf_policy.c') diff --git a/src/plugins/abf/abf_policy.c b/src/plugins/abf/abf_policy.c index 945434bca27..1921df113ff 100644 --- a/src/plugins/abf/abf_policy.c +++ b/src/plugins/abf/abf_policy.c @@ -456,7 +456,8 @@ static const fib_node_vft_t abf_policy_vft = { static clib_error_t * abf_policy_init (vlib_main_t * vm) { - abf_policy_fib_node_type = fib_node_register_new_type (&abf_policy_vft); + abf_policy_fib_node_type = + fib_node_register_new_type ("abf-policy", &abf_policy_vft); return (NULL); } -- cgit 1.2.3-korg