From a17cfb3fdaacbdc1d7303aeb898939595dc931ad Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Wed, 28 Jul 2021 10:56:48 -0400 Subject: [PATCH] bgpd: Mark the node as the correct type for bgp ipv6 unicast The bgp ipv6 unicast node should be called `bgp ipv6 unicast` to make it consistent with other nodes where we list the afi/safi Signed-off-by: Donald Sharp --- bgpd/bgp_vty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bgpd/bgp_vty.c b/bgpd/bgp_vty.c index dfdfab79a5..2b19f76c7b 100644 --- a/bgpd/bgp_vty.c +++ b/bgpd/bgp_vty.c @@ -18290,7 +18290,7 @@ static struct cmd_node bgp_ipv4_labeled_unicast_node = { }; static struct cmd_node bgp_ipv6_unicast_node = { - .name = "bgp ipv6", + .name = "bgp ipv6 unicast", .node = BGP_IPV6_NODE, .parent_node = BGP_NODE, .prompt = "%s(config-router-af)# ", -- 2.39.5