From: Donald Sharp Date: Wed, 1 Jun 2016 15:44:16 +0000 (-0400) Subject: zebra: Remove experimental warning X-Git-Tag: frr-2.0-rc1~657 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=54fec4d5086c93c0d5c18f5bbbcbe592f930f214;p=matthieu%2Ffrr.git zebra: Remove experimental warning Remove the pimd experimental warnings that are being displayed for some commands. Ticket: CM-6128 Signed-off-by: Donald Sharp --- diff --git a/zebra/zebra_vty.c b/zebra/zebra_vty.c index 7addb3509e..39f182e6d5 100644 --- a/zebra/zebra_vty.c +++ b/zebra/zebra_vty.c @@ -179,7 +179,6 @@ DEFUN (ip_mroute_dist, "Nexthop interface name\n" "Distance\n") { - VTY_WARN_EXPERIMENTAL(); return zebra_static_ipv4 (vty, SAFI_MULTICAST, 1, argv[0], NULL, argv[1], NULL, NULL, argc > 2 ? argv[2] : NULL, NULL); } @@ -202,7 +201,6 @@ DEFUN (no_ip_mroute_dist, "Nexthop interface name\n" "Distance\n") { - VTY_WARN_EXPERIMENTAL(); return zebra_static_ipv4 (vty, SAFI_MULTICAST, 0, argv[0], NULL, argv[1], NULL, NULL, argc > 2 ? argv[2] : NULL, NULL); } @@ -228,7 +226,6 @@ DEFUN (ip_multicast_mode, "Lookup both, use entry with lower distance\n" "Lookup both, use entry with longer prefix\n") { - VTY_WARN_EXPERIMENTAL(); if (!strncmp (argv[0], "u", 1)) multicast_mode_ipv4_set (MCAST_URIB_ONLY); @@ -281,7 +278,6 @@ DEFUN (show_ip_rpf, IP_STR "Display RPF information for multicast source\n") { - VTY_WARN_EXPERIMENTAL(); return do_show_ip_route(vty, VRF_DEFAULT_NAME, SAFI_MULTICAST); } @@ -298,8 +294,6 @@ DEFUN (show_ip_rpf_addr, struct rib *rib; int ret; - VTY_WARN_EXPERIMENTAL(); - ret = inet_aton (argv[0], &addr); if (ret == 0) {