From 49a6963b1387bf7535f589f02ffc99de5b59192f Mon Sep 17 00:00:00 2001 From: Chris Luke Date: Fri, 8 Jul 2016 10:34:00 -0400 Subject: [PATCH] VPP-192 ip_neighbor_add_del incomplete vat help Adds missing items to ip_neighbor_add_del help text Change-Id: I1d74c7d31ec6d96f8de9bfb5bfc7872b9cbef682 Signed-off-by: Chris Luke --- vpp-api-test/vat/api_format.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/vpp-api-test/vat/api_format.c b/vpp-api-test/vat/api_format.c index 5e2b3275f48..dd428966550 100644 --- a/vpp-api-test/vat/api_format.c +++ b/vpp-api-test/vat/api_format.c @@ -4914,12 +4914,12 @@ static int api_ip_neighbor_add_del (vat_main_t * vam) /* Parse args required to build the message */ while (unformat_check_input (i) != UNFORMAT_END_OF_INPUT) { - if (unformat (i, "mac %U", unformat_ethernet_address, mac_address)) { + if (unformat (i, "mac %U", unformat_ethernet_address, mac_address)) { mac_set = 1; } else if (unformat (i, "del")) is_add = 0; - else if (unformat (i, "%U", unformat_sw_if_index, vam, &sw_if_index)) + else if (unformat (i, "%U", unformat_sw_if_index, vam, &sw_if_index)) sw_if_index_set = 1; else if (unformat (i, "sw_if_index %d", &sw_if_index)) sw_if_index_set = 1; @@ -4948,7 +4948,7 @@ static int api_ip_neighbor_add_del (vat_main_t * vam) return -99; } if (!v4_address_set && !v6_address_set) { - errmsg ("no addresses set\n"); + errmsg ("no address set\n"); return -99; } @@ -12277,7 +12277,8 @@ _(mpls_gre_add_del_tunnel, \ _(sw_interface_set_unnumbered, \ " | sw_if_index unnum_if_index [del]") \ _(ip_neighbor_add_del, \ - " | sw_if_index dst mac ") \ + "( | sw_if_index ) dst " \ + "[mac ] [vrf ] [is_static] [del]") \ _(reset_vrf, "vrf [ipv6]") \ _(create_vlan_subif, " | sw_if_index vlan ") \ _(create_subif, " | sw_if_index sub_id \n" \ -- 2.16.6