]> git.puffer.fish Git - mirror/frr.git/commitdiff
bgpd: Mark the node as the correct type for bgp ipv6 unicast 9221/head
authorDonald Sharp <sharpd@nvidia.com>
Wed, 28 Jul 2021 14:56:48 +0000 (10:56 -0400)
committermergify-bot <noreply@mergify.io>
Thu, 29 Jul 2021 07:31:20 +0000 (07:31 +0000)
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 <sharpd@nvidia.com>
(cherry picked from commit a17cfb3fdaacbdc1d7303aeb898939595dc931ad)

bgpd/bgp_vty.c

index cfd22b06c75b668baaca1f58bbf50a00ae8a479a..824b326e90d66ec43f623ecf85fc59674441b59d 100644 (file)
@@ -16922,7 +16922,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)# ",