]> git.proxmox.com Git - mirror_frr.git/commitdiff
*: fix excess docstring
authorQuentin Young <qlyoung@cumulusnetworks.com>
Wed, 5 Jul 2017 18:30:36 +0000 (14:30 -0400)
committerQuentin Young <qlyoung@cumulusnetworks.com>
Wed, 5 Jul 2017 19:33:00 +0000 (15:33 -0400)
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
14 files changed:
babeld/babeld.c
bgpd/bgp_route.c
bgpd/bgp_vty.c
bgpd/rfapi/bgp_rfapi_cfg.c
bgpd/rfapi/rfapi_vty.c
isisd/isis_vty.c
lib/plist.c
ospf6d/ospf6_interface.c
ospf6d/ospf6_top.c
ospfd/ospf_vty.c
pimd/pim_cmd.c
ripd/rip_interface.c
vtysh/vtysh.c
zebra/zebra_vty.c

index b44b25ab4e95e5bfb5b9746096af4ee8c57340ef..e17e00ca566fd31a3620e08b13d4cc8c788f8448 100644 (file)
@@ -617,8 +617,7 @@ DEFUN (no_router_babel,
        "no router babel",
        NO_STR
        "Disable a routing process\n"
-       "Remove Babel instance command\n"
-       "No attributes\n")
+       "Remove Babel instance command\n")
 {
     if(babel_routing_process)
         babel_clean_routing_process();
index 404360a3afdf17c033930664c48dc82a955d1158..5a711c1e759be43e30d641b30a25611f03d9161a 100644 (file)
@@ -9436,7 +9436,6 @@ DEFUN (show_ip_bgp_instance_neighbor_prefix_counts,
        "Address Family modifier\n"
        "Address Family modifier\n"
        "Address Family modifier\n"
-       "Address Family modifier\n"
        "Detailed information on TCP and BGP neighbor connections\n"
        "Neighbor to display information about\n"
        "Neighbor to display information about\n"
index 6e998085c109818b932cca7db74b1bc72b0771b5..5b5f4096c066c885998d0601a2fc2333f8df8963 100644 (file)
@@ -1376,7 +1376,6 @@ DEFUN (bgp_update_delay_establish_wait,
        "update-delay (0-3600) (1-3600)",
        "Force initial delay for best-path and updates\n"
        "Seconds\n"
-       "Wait for peers to be established\n"
        "Seconds\n")
 {
   int idx_number = 1;
@@ -1391,7 +1390,7 @@ DEFUN (no_bgp_update_delay,
        NO_STR
        "Force initial delay for best-path and updates\n"
        "Seconds\n"
-       "Wait for peers to be established\n")
+       "Seconds\n")
 {
   return bgp_update_delay_deconfig_vty(vty);
 }
@@ -6240,11 +6239,10 @@ DEFUN_NOSH (address_family_vpnv6,
 
 DEFUN_NOSH (address_family_evpn,
        address_family_evpn_cmd,
-       "address-family <l2vpn evpn>",
+       "address-family l2vpn evpn",
        "Enter Address Family command mode\n"
-       "EVPN Address family\n"
-       "Layer2 VPN Address family\n"
-       "Ethernet Virtual Private Network Subsequent Address Family\n")
+       "Address Family\n"
+       "Address Family modifier\n")
 {
   vty->node = BGP_EVPN_NODE;
   return CMD_SUCCESS;
@@ -9620,8 +9618,7 @@ DEFUN (show_bgp_updgrps_afi_adj,
        "Detailed info about dynamic update groups\n"
        "Advertisement queue\n"
        "Announced routes\n"
-       "Packet queue\n"
-       "Specific subgroup info wanted for\n")
+       "Packet queue\n")
 {
   int idx_afi = 2;
   int idx_safi = 3;
@@ -9726,8 +9723,7 @@ DEFUN (show_bgp_updgrps_afi_adj_s,
        "Specific subgroup to display info for\n"
        "Advertisement queue\n"
        "Announced routes\n"
-       "Packet queue\n"
-       "Specific subgroup info wanted for\n")
+       "Packet queue\n")
 {
   int idx_afi = 2;
   int idx_safi = 3;
@@ -12180,8 +12176,7 @@ DEFUN (ip_lcommunity_list_standard,
        LCOMMUNITY_LIST_STR
        "Large Community list number (standard)\n"
        "Specify large community to reject\n"
-       "Specify large community to accept\n"
-       LCOMMUNITY_VAL_STR)
+       "Specify large community to accept\n")
 {
   return lcommunity_list_set_vty (vty, argc, argv, LARGE_COMMUNITY_LIST_STANDARD, 0);
 }
index 5cd8528ea9beecff644f96358072bfecfa7fcdc5..14cce2d606ad4ee99634b84331082a5cf9a92a6b 100644 (file)
@@ -1313,9 +1313,9 @@ DEFUN (vnc_nve_group_redist_bgpdirect_no_prefixlist,
        NO_STR
        "Redistribute from other protocol\n"
        "Redistribute from BGP directly\n"
-       "Disable redistribute filter\n"
        "IPv4 routes\n"
-       "IPv6 routes\n" "Prefix-list for filtering redistributed routes\n")
+       "IPv6 routes\n"
+       "Prefix-list for filtering redistributed routes\n")
 {
   VTY_DECLVAR_CONTEXT(bgp, bgp);
   VTY_DECLVAR_CONTEXT_SUB(rfapi_nve_group_cfg, rfg)
@@ -1412,7 +1412,6 @@ DEFUN (vnc_nve_group_redist_bgpdirect_no_routemap,
        NO_STR
        "Redistribute from other protocols\n"
        "Redistribute from BGP directly\n"
-       "Disable redistribute filter\n"
        "Route-map for filtering redistributed routes\n")
 {
   VTY_DECLVAR_CONTEXT(bgp, bgp);
@@ -2076,7 +2075,6 @@ DEFUN (vnc_nve_export_prefixlist,
        "Export to other protocols\n"
        "Export to BGP\n"
        "Export to Zebra (experimental)\n"
-       "Filters, used in 'registering-nve' export mode\n"
        "IPv4 prefixes\n"
        "IPv6 prefixes\n"
        "Prefix-list for filtering exported routes\n" "Prefix list name\n")
@@ -2178,7 +2176,6 @@ DEFUN (vnc_nve_export_routemap,
        "Export to other protocols\n"
        "Export to BGP\n"
        "Export to Zebra (experimental)\n"
-       "Filters, used in 'registering-nve' export mode\n"
        "Route-map for filtering exported routes\n" "Route map name\n")
 {
   VTY_DECLVAR_CONTEXT(bgp, bgp);
@@ -3918,7 +3915,6 @@ DEFUN (vnc_l2_group_no_labels,
        vnc_l2_group_no_labels_cmd,
        "no labels LABELLIST...",
        NO_STR
-       "Remove label values associated with L2 group\n"
        "Specify label values associated with L2 group\n"
        "Space separated list of label values <0-1048575>\n")
 {
index 2062164890095024d9917fb327a225d20af26f49..791082bcbe1d535f6f1bde4408f44f02ac49a80f 100644 (file)
@@ -2672,8 +2672,7 @@ DEFUN (add_vnc_prefix_cost_life,
        "Administrative cost   [default: 255]\n"
        "Administrative cost\n"
        "Registration lifetime [default: infinite]\n"
-       "Lifetime value in seconds\n"
-       "[local-next-hop (A.B.C.D|X:X::X:X)] [local-cost <0-255>]\n")
+       "Lifetime value in seconds\n")
 {
   /*                       pfx      vn       un       cost     life */
   return register_add (vty, argv[3], argv[5], argv[7], argv[9], argv[11],
@@ -2698,8 +2697,7 @@ DEFUN (add_vnc_prefix_life_cost,
        "Registration lifetime [default: infinite]\n"
        "Lifetime value in seconds\n"
        "Administrative cost   [default: 255]\n"
-       "Administrative cost\n"
-       "[local-next-hop (A.B.C.D|X:X::X:X)] [local-cost <0-255>]\n")
+       "Administrative cost\n")
 {
   /*                       pfx      vn       un       cost     life */
   return register_add (vty, argv[3], argv[5], argv[7], argv[11], argv[9],
@@ -2722,8 +2720,7 @@ DEFUN (add_vnc_prefix_cost,
        "UN IPv4 interface address\n"
        "UN IPv6 interface address\n"
        "Administrative cost   [default: 255]\n"
-       "Administrative cost\n"
-       "[local-next-hop (A.B.C.D|X:X::X:X)] [local-cost <0-255>]\n")
+       "Administrative cost\n")
 {
   /*                       pfx      vn       un       cost     life */
   return register_add (vty, argv[3], argv[5], argv[7], argv[9], NULL,
@@ -2746,8 +2743,7 @@ DEFUN (add_vnc_prefix_life,
        "UN IPv4 interface address\n"
        "UN IPv6 interface address\n"
        "Registration lifetime [default: infinite]\n"
-       "Lifetime value in seconds\n"
-       "[local-next-hop (A.B.C.D|X:X::X:X)] [local-cost <0-255>]\n")
+       "Lifetime value in seconds\n")
 {
   /*                       pfx      vn       un       cost     life */
   return register_add (vty, argv[3], argv[5], argv[7], NULL, argv[9],
@@ -2768,8 +2764,7 @@ DEFUN (add_vnc_prefix,
        "VN IPv6 interface address\n"
        "UN address of NVE\n"
        "UN IPv4 interface address\n"
-       "UN IPv6 interface address\n"
-       "[local-next-hop (A.B.C.D|X:X::X:X)] [local-cost <0-255>]\n")
+       "UN IPv6 interface address\n")
 {
   /*                       pfx      vn       un       cost     life */
   return register_add (vty, argv[3], argv[5], argv[7], NULL, NULL,
@@ -4064,7 +4059,6 @@ DEFUN (clear_vnc_mac_vn_un,
        "VNI keyword\n"
        "Any virtual network identifier\n"
        "Virtual network identifier\n"
-       "Virtual network identifier\n"
        "VN address of NVE\n"
        "All VN addresses\n"
        "VN IPv4 interface address\n"
index b603ab5dc9fcf3b51e346839bbf867d2586e5a22..f0e2831bff1666e7d90b256254c4ef8b9042a56a 100644 (file)
@@ -673,7 +673,6 @@ DEFUN (isis_hello_interval,
        "isis hello-interval (1-600)",
        "IS-IS commands\n"
        "Set Hello interval\n"
-       "Hello interval value\n"
        "Holdtime 1 seconds, interval depends on multiplier\n")
 {
   int idx_number = 2;
@@ -721,7 +720,6 @@ DEFUN (isis_hello_interval_l1,
        "isis hello-interval (1-600) level-1",
        "IS-IS commands\n"
        "Set Hello interval\n"
-       "Hello interval value\n"
        "Holdtime 1 second, interval depends on multiplier\n"
        "Specify hello-interval for level-1 IIHs\n")
 {
@@ -769,7 +767,6 @@ DEFUN (isis_hello_interval_l2,
        "isis hello-interval (1-600) level-2",
        "IS-IS commands\n"
        "Set Hello interval\n"
-       "Hello interval value\n"
        "Holdtime 1 second, interval depends on multiplier\n"
        "Specify hello-interval for level-2 IIHs\n")
 {
@@ -958,8 +955,7 @@ DEFUN (isis_hello_padding,
        "isis hello padding",
        "IS-IS commands\n"
        "Add padding to IS-IS hello packets\n"
-       "Pad hello packets\n"
-       "<cr>\n")
+       "Pad hello packets\n")
 {
   struct isis_circuit *circuit = isis_circuit_lookup (vty);
   if (!circuit)
@@ -976,8 +972,7 @@ DEFUN (no_isis_hello_padding,
        NO_STR
        "IS-IS commands\n"
        "Add padding to IS-IS hello packets\n"
-       "Pad hello packets\n"
-       "<cr>\n")
+       "Pad hello packets\n")
 {
   struct isis_circuit *circuit = isis_circuit_lookup (vty);
   if (!circuit)
@@ -1431,8 +1426,7 @@ DEFUN (no_metric_style,
 DEFUN (set_overload_bit,
        set_overload_bit_cmd,
        "set-overload-bit",
-       "Set overload bit to avoid any transit traffic\n"
-       "Set overload bit\n")
+       "Set overload bit to avoid any transit traffic\n")
 {
   VTY_DECLVAR_CONTEXT (isis_area, area);
 
@@ -1455,8 +1449,7 @@ DEFUN (no_set_overload_bit,
 DEFUN (set_attached_bit,
        set_attached_bit_cmd,
        "set-attached-bit",
-       "Set attached bit to identify as L1/L2 router for inter-area traffic\n"
-       "Set attached bit\n")
+       "Set attached bit to identify as L1/L2 router for inter-area traffic\n")
 {
   VTY_DECLVAR_CONTEXT (isis_area, area);
 
index 172f2b39dba703cca8c3a727d4e2da321103ed61..339540a2b5f3276480643fe9bc3b5868d9cf9399 100644 (file)
@@ -1736,9 +1736,7 @@ DEFPY (show_ipv6_prefix_list,
        PREFIX_LIST_STR
        "Name of a prefix list\n"
        "sequence number of an entry\n"
-       "Sequence number\n"
-       "Lookup longer prefix\n"
-       "First matched prefix\n")
+       "Sequence number\n")
 {
   enum display_type dtype = normal_display;
   if (dseq)
index e50de6fab28801e8093b3e9d73f55da6d78ef189..e91c249845a1092182018030e4f16f6bad09ad2b 100644 (file)
@@ -1729,9 +1729,7 @@ DEFUN (no_ipv6_ospf6_network,
        NO_STR
        IP6_STR
        OSPF6_STR
-       "Network type\n"
-       "Default to whatever interface type system specifies"
-       )
+       "Set default network type\n")
 {
   VTY_DECLVAR_CONTEXT(interface, ifp);
   struct ospf6_interface *oi;
index 2f157d98a01e93cf5cb24283d5bd83e4c2e9816b..268b7a60a264af16c1a39e293b462e0336c9c696 100644 (file)
@@ -697,7 +697,6 @@ DEFUN (ospf6_stub_router_admin,
        ospf6_stub_router_admin_cmd,
        "stub-router administrative",
        "Make router a stub router\n"
-       "Advertise inability to be a transit router\n"
        "Administratively applied, for an indefinite period\n")
 {
   struct listnode *node;
@@ -722,7 +721,6 @@ DEFUN (no_ospf6_stub_router_admin,
        "no stub-router administrative",
        NO_STR
        "Make router a stub router\n"
-       "Advertise ability to be a transit router\n"
        "Administratively applied, for an indefinite period\n")
 {
   struct listnode *node;
index 799214c9c5194d49ddb5d2918e6e04c60209e198..bc98da45eecac791a4cfee52963a91d98dcc6891 100644 (file)
@@ -7095,8 +7095,7 @@ DEFUN (ospf_redistribute_source,
        "Metric for redistributed routes\n"
        "OSPF default metric\n"
        "OSPF exterior metric type for redistributed routes\n"
-       "Set OSPF External Type 1 metrics\n"
-       "Set OSPF External Type 2 metrics\n"
+       "Set OSPF External Type 1/2 metrics\n"
        "Route map reference\n"
        "Pointer to route-map entries\n")
 {
@@ -7147,8 +7146,7 @@ DEFUN (no_ospf_redistribute_source,
        "Metric for redistributed routes\n"
        "OSPF default metric\n"
        "OSPF exterior metric type for redistributed routes\n"
-       "Set OSPF External Type 1 metrics\n"
-       "Set OSPF External Type 2 metrics\n"
+       "Set OSPF External Type 1/2 metrics\n"
        "Route map reference\n"
        "Pointer to route-map entries\n")
 {
@@ -7179,8 +7177,7 @@ DEFUN (ospf_redistribute_instance_source,
        "Metric for redistributed routes\n"
        "OSPF default metric\n"
        "OSPF exterior metric type for redistributed routes\n"
-       "Set OSPF External Type 1 metrics\n"
-       "Set OSPF External Type 2 metrics\n"
+       "Set OSPF External Type 1/2 metrics\n"
        "Route map reference\n"
        "Pointer to route-map entries\n")
 {
@@ -7251,8 +7248,7 @@ DEFUN (no_ospf_redistribute_instance_source,
        "Metric for redistributed routes\n"
        "OSPF default metric\n"
        "OSPF exterior metric type for redistributed routes\n"
-       "Set OSPF External Type 1 metrics\n"
-       "Set OSPF External Type 2 metrics\n"
+       "Set OSPF External Type 1/2 metrics\n"
        "Route map reference\n"
        "Pointer to route-map entries\n")
 {
@@ -7345,8 +7341,7 @@ DEFUN (ospf_default_information_originate,
        "OSPF default metric\n"
        "OSPF metric\n"
        "OSPF metric type for default routes\n"
-       "Set OSPF External Type 1 metrics\n"
-       "Set OSPF External Type 2 metrics\n"
+       "Set OSPF External Type 1/2 metrics\n"
        "Route map reference\n"
        "Pointer to route-map entries\n")
 {
@@ -7392,8 +7387,7 @@ DEFUN (no_ospf_default_information_originate,
        "OSPF default metric\n"
        "OSPF metric\n"
        "OSPF metric type for default routes\n"
-       "Set OSPF External Type 1 metrics\n"
-       "Set OSPF External Type 2 metrics\n"
+       "Set OSPF External Type 1/2 metrics\n"
        "Route map reference\n"
        "Pointer to route-map entries\n")
 {
index 0051298e4a48b2d5d22c15504f2cbbb35f59c5e5..b0afc7828a639bea3562953fa19023d0c77800d2 100644 (file)
@@ -4256,7 +4256,6 @@ DEFUN_HIDDEN (no_ip_multicast_routing,
               "no ip multicast-routing",
               NO_STR
               IP_STR
-              "Global IP configuration subcommands\n"
               "Enable IP multicast forwarding\n")
 {
   vty_outln (vty,
@@ -5732,7 +5731,6 @@ DEFUN (debug_ssmpingd,
        debug_ssmpingd_cmd,
        "debug ssmpingd",
        DEBUG_STR
-       DEBUG_PIM_STR
        DEBUG_SSMPINGD_STR)
 {
   PIM_DO_DEBUG_SSMPINGD;
@@ -5744,7 +5742,6 @@ DEFUN (no_debug_ssmpingd,
        "no debug ssmpingd",
        NO_STR
        DEBUG_STR
-       DEBUG_PIM_STR
        DEBUG_SSMPINGD_STR)
 {
   PIM_DONT_DEBUG_SSMPINGD;
index 425b01c247cdf4310d3a25fa5208933b3c7bada8..4ce1b9b65537cc687bb210d5aeecf31534f512f9 100644 (file)
@@ -1327,8 +1327,7 @@ DEFUN (ip_rip_receive_version,
        "Routing Information Protocol\n"
        "Advertisement reception\n"
        "Version control\n"
-       "RIP version 1\n"
-       "RIP version 2\n"
+       "RIP version\n"
        "None\n")
 {
   VTY_DECLVAR_CONTEXT(interface, ifp);
@@ -1357,31 +1356,13 @@ DEFUN (ip_rip_receive_version,
 
 DEFUN (ip_rip_receive_version_1,
        ip_rip_receive_version_1_cmd,
-       "ip rip receive version (1-1) (2-2)",
+       "ip rip receive version <1 2|2 1>",
        IP_STR
        "Routing Information Protocol\n"
        "Advertisement reception\n"
        "Version control\n"
        "RIP version 1\n"
-       "RIP version 2\n")
-{
-  VTY_DECLVAR_CONTEXT(interface, ifp);
-  struct rip_interface *ri;
-
-  ri = ifp->info;
-
-  /* Version 1 and 2. */
-  ri->ri_receive = RI_RIP_VERSION_1_AND_2;
-  return CMD_SUCCESS;
-}
-
-DEFUN (ip_rip_receive_version_2,
-       ip_rip_receive_version_2_cmd,
-       "ip rip receive version (2-2) (1-1)",
-       IP_STR
-       "Routing Information Protocol\n"
-       "Advertisement reception\n"
-       "Version control\n"
+       "RIP version 2\n"
        "RIP version 2\n"
        "RIP version 1\n")
 {
@@ -1403,8 +1384,7 @@ DEFUN (no_ip_rip_receive_version,
        "Routing Information Protocol\n"
        "Advertisement reception\n"
        "Version control\n"
-       "Version 1\n"
-       "Version 2\n")
+       "RIP version\n")
 {
   VTY_DECLVAR_CONTEXT(interface, ifp);
   struct rip_interface *ri;
@@ -1423,8 +1403,7 @@ DEFUN (ip_rip_send_version,
        "Routing Information Protocol\n"
        "Advertisement transmission\n"
        "Version control\n"
-       "RIP version 1\n"
-       "RIP version 2\n")
+       "RIP version\n")
 {
   VTY_DECLVAR_CONTEXT(interface, ifp);
   int idx_type = 4;
@@ -1448,31 +1427,13 @@ DEFUN (ip_rip_send_version,
 
 DEFUN (ip_rip_send_version_1,
        ip_rip_send_version_1_cmd,
-       "ip rip send version (1-1) (2-2)",
+       "ip rip send version <1 2|2 1>",
        IP_STR
        "Routing Information Protocol\n"
        "Advertisement transmission\n"
        "Version control\n"
        "RIP version 1\n"
-       "RIP version 2\n")
-{
-  VTY_DECLVAR_CONTEXT(interface, ifp);
-  struct rip_interface *ri;
-
-  ri = ifp->info;
-
-  /* Version 1 and 2. */
-  ri->ri_send = RI_RIP_VERSION_1_AND_2;
-  return CMD_SUCCESS;
-}
-
-DEFUN (ip_rip_send_version_2,
-       ip_rip_send_version_2_cmd,
-       "ip rip send version (2-2) (1-1)",
-       IP_STR
-       "Routing Information Protocol\n"
-       "Advertisement transmission\n"
-       "Version control\n"
+       "RIP version 2\n"
        "RIP version 2\n"
        "RIP version 1\n")
 {
@@ -1494,8 +1455,7 @@ DEFUN (no_ip_rip_send_version,
        "Routing Information Protocol\n"
        "Advertisement transmission\n"
        "Version control\n"
-       "Version 1\n"
-       "Version 2\n")
+       "RIP version\n")
 {
   VTY_DECLVAR_CONTEXT(interface, ifp);
   struct rip_interface *ri;
@@ -2034,12 +1994,10 @@ rip_if_init (void)
 
   install_element (INTERFACE_NODE, &ip_rip_send_version_cmd);
   install_element (INTERFACE_NODE, &ip_rip_send_version_1_cmd);
-  install_element (INTERFACE_NODE, &ip_rip_send_version_2_cmd);
   install_element (INTERFACE_NODE, &no_ip_rip_send_version_cmd);
 
   install_element (INTERFACE_NODE, &ip_rip_receive_version_cmd);
   install_element (INTERFACE_NODE, &ip_rip_receive_version_1_cmd);
-  install_element (INTERFACE_NODE, &ip_rip_receive_version_2_cmd);
   install_element (INTERFACE_NODE, &no_ip_rip_receive_version_cmd);
 
   install_element (INTERFACE_NODE, &ip_rip_v2_broadcast_cmd);
index 0e04f4bf8e5103fc2ed711e3aea0bb34be03f5fd..fe402f7098eef4e1536eda4eced67e1df38b35d0 100644 (file)
@@ -1271,9 +1271,8 @@ DEFUNSH (VTYSH_BGPD,
         address_family_evpn_cmd,
         "address-family <l2vpn evpn>",
          "Enter Address Family command mode\n"
-         "EVPN Address family\n"
-         "Layer2 VPN Address family\n"
-         "Ethernet Virtual Private Network Subsequent Address Family\n")
+         "Address Family\n"
+         "Address Family modifier\n")
 {
   vty->node = BGP_EVPN_NODE;
   return CMD_SUCCESS;
@@ -2445,10 +2444,9 @@ DEFUNSH (VTYSH_ALL,
 DEFUNSH (VTYSH_ALL,
         vtysh_config_password,
         vtysh_password_cmd,
-        "password (8-8) WORD",
+        "password [(8-8)] WORD",
         "Assign the terminal connection password\n"
         "Specifies a HIDDEN password will follow\n"
-        "dummy string \n"
         "The HIDDEN line password string\n")
 {
   return CMD_SUCCESS;
index c861efbddfe438d8b937486837e475339e518105..06412e1b3fe259d2b78c9ff97ca203591751f588 100644 (file)
@@ -433,8 +433,7 @@ DEFUN (ip_route_flags,
        "Set tag for this route\n"
        "Tag value\n"
        "Distance value for this route\n"
-       VRF_CMD_HELP_STR
-       MPLS_LABEL_HELPSTR)
+       VRF_CMD_HELP_STR)
 {
   int idx_ipv4_prefixlen = 2;
   int idx_reject_blackhole = 3;
@@ -466,8 +465,7 @@ DEFUN (ip_route_mask,
        "Set tag for this route\n"
        "Tag value\n"
        "Distance value for this route\n"
-       VRF_CMD_HELP_STR
-       MPLS_LABEL_HELPSTR)
+       VRF_CMD_HELP_STR)
 {
   int idx_ipv4 = 2;
   int idx_ipv4_2 = 3;
@@ -497,8 +495,7 @@ DEFUN (ip_route_mask_flags,
        "Set tag for this route\n"
        "Tag value\n"
        "Distance value for this route\n"
-       VRF_CMD_HELP_STR
-       MPLS_LABEL_HELPSTR)
+       VRF_CMD_HELP_STR)
 {
   int idx_ipv4 = 2;
   int idx_ipv4_2 = 3;
@@ -530,8 +527,7 @@ DEFUN (no_ip_route,
        "Tag of this route\n"
        "Tag value\n"
        "Distance value for this route\n"
-       VRF_CMD_HELP_STR
-       MPLS_LABEL_HELPSTR)
+       VRF_CMD_HELP_STR)
 {
   int idx_ipv4_prefixlen = 3;
   int idx_ipv4_ifname_null = 4;
@@ -561,8 +557,7 @@ DEFUN (no_ip_route_flags,
        "Tag of this route\n"
        "Tag value\n"
        "Distance value for this route\n"
-       VRF_CMD_HELP_STR
-       MPLS_LABEL_HELPSTR)
+       VRF_CMD_HELP_STR)
 {
   int idx_ipv4_prefixlen = 3;
   int idx_curr = 5;
@@ -591,8 +586,7 @@ DEFUN (no_ip_route_mask,
        "Tag of this route\n"
        "Tag value\n"
        "Distance value for this route\n"
-       VRF_CMD_HELP_STR
-       MPLS_LABEL_HELPSTR)
+       VRF_CMD_HELP_STR)
 {
   int idx_ipv4 = 3;
   int idx_ipv4_2 = 4;
@@ -624,8 +618,7 @@ DEFUN (no_ip_route_mask_flags,
        "Tag of this route\n"
        "Tag value\n"
        "Distance value for this route\n"
-       VRF_CMD_HELP_STR
-       MPLS_LABEL_HELPSTR)
+       VRF_CMD_HELP_STR)
 {
   int idx_ipv4 = 3;
   int idx_ipv4_2 = 4;
@@ -2171,8 +2164,7 @@ DEFUN (ipv6_route,
        "Set tag for this route\n"
        "Tag value\n"
        "Distance value for this prefix\n"
-       VRF_CMD_HELP_STR
-       MPLS_LABEL_HELPSTR)
+       VRF_CMD_HELP_STR)
 {
   int idx_ipv6_prefixlen = 2;
   int idx_ipv6_ifname;
@@ -2218,8 +2210,7 @@ DEFUN (ipv6_route_flags,
        "Set tag for this route\n"
        "Tag value\n"
        "Distance value for this prefix\n"
-       VRF_CMD_HELP_STR
-       MPLS_LABEL_HELPSTR)
+       VRF_CMD_HELP_STR)
 {
   int idx_ipv6_prefixlen = 2;
   int idx_ipv6_ifname;
@@ -2267,8 +2258,7 @@ DEFUN (ipv6_route_ifname,
        "Set tag for this route\n"
        "Tag value\n"
        "Distance value for this prefix\n"
-       VRF_CMD_HELP_STR
-       MPLS_LABEL_HELPSTR)
+       VRF_CMD_HELP_STR)
 {
   int idx_ipv6_prefixlen = 2;
   int idx_ipv6 = 3;
@@ -2318,8 +2308,7 @@ DEFUN (ipv6_route_ifname_flags,
        "Set tag for this route\n"
        "Tag value\n"
        "Distance value for this prefix\n"
-       VRF_CMD_HELP_STR
-       MPLS_LABEL_HELPSTR)
+       VRF_CMD_HELP_STR)
 {
   int idx_ipv6_prefixlen = 2;
   int idx_ipv6;
@@ -2372,8 +2361,7 @@ DEFUN (no_ipv6_route,
        "Set tag for this route\n"
        "Tag value\n"
        "Distance value for this prefix\n"
-       VRF_CMD_HELP_STR
-       MPLS_LABEL_HELPSTR)
+       VRF_CMD_HELP_STR)
 {
   int idx_ipv6_prefixlen = 3;
   int idx_ipv6_ifname;
@@ -2420,8 +2408,7 @@ DEFUN (no_ipv6_route_flags,
        "Set tag for this route\n"
        "Tag value\n"
        "Distance value for this prefix\n"
-       VRF_CMD_HELP_STR
-       MPLS_LABEL_HELPSTR)
+       VRF_CMD_HELP_STR)
 {
   int idx_ipv6_prefixlen = 3;
   int idx_ipv6_ifname;
@@ -2470,8 +2457,7 @@ DEFUN (no_ipv6_route_ifname,
        "Set tag for this route\n"
        "Tag value\n"
        "Distance value for this prefix\n"
-       VRF_CMD_HELP_STR
-       MPLS_LABEL_HELPSTR)
+       VRF_CMD_HELP_STR)
 {
   int idx_ipv6_prefixlen = 3;
   int idx_ipv6;
@@ -2522,8 +2508,7 @@ DEFUN (no_ipv6_route_ifname_flags,
        "Set tag for this route\n"
        "Tag value\n"
        "Distance value for this prefix\n"
-       VRF_CMD_HELP_STR
-       MPLS_LABEL_HELPSTR)
+       VRF_CMD_HELP_STR)
 {
   int idx_ipv6_prefixlen = 3;
   int idx_ipv6;