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/lb/lb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/lb') diff --git a/src/plugins/lb/lb.c b/src/plugins/lb/lb.c index 6fc7f0f92b2..5bc7cf25a97 100644 --- a/src/plugins/lb/lb.c +++ b/src/plugins/lb/lb.c @@ -1412,7 +1412,7 @@ lb_init (vlib_main_t * vm) lb_dpo_nat4_port_nodes); lbm->dpo_nat6_port_type = dpo_register_new_type(&lb_vft, lb_dpo_nat6_port_nodes); - lbm->fib_node_type = fib_node_register_new_type(&lb_fib_node_vft); + lbm->fib_node_type = fib_node_register_new_type ("lb", &lb_fib_node_vft); //Init AS reference counters vlib_refcount_init(&lbm->as_refcount); -- cgit 1.2.3-korg