diff options
author | Onong Tayeng <otayeng@cisco.com> | 2020-09-11 17:22:07 +0530 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2020-09-16 10:32:37 +0000 |
commit | c669272949f96b7e8a565c17d6a165094f8483bc (patch) | |
tree | 80ee4ceb2d138b9021b370bf3774b7f2147fb3b5 /src | |
parent | d5f713ce60b2ccc4838ed07fa83ad061e159af94 (diff) |
lisp: fix spelling mistake in option name
In the vat help msg for one_add_del_l2_arp_entry the IP address option
is misspelled as "ip4 <ip4>" when it should have been "ip <ip4>".
Type: fix
Signed-off-by: Onong Tayeng <otayeng@cisco.com>
Change-Id: Id4058a3ddfdb78b840d7e5a3c330e67b393f5d3b
(cherry picked from commit 8c6ba2957c985a1670e9fca6bc869008e6722364)
Diffstat (limited to 'src')
-rw-r--r-- | src/vat/api_format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vat/api_format.c b/src/vat/api_format.c index f1935dee33a..48a4a3fbe5d 100644 --- a/src/vat/api_format.c +++ b/src/vat/api_format.c @@ -21031,7 +21031,7 @@ _(one_eid_table_dump, "[eid <ipv4|ipv6>/<prefix> | <mac>] [vni] " \ _(one_add_del_ndp_entry, "[del] mac <mac> bd <bd> ip6 <ip6>") \ _(one_ndp_bd_get, "") \ _(one_ndp_entries_get, "bd <bridge-domain>") \ -_(one_add_del_l2_arp_entry, "[del] mac <mac> bd <bd> ip4 <ip4>") \ +_(one_add_del_l2_arp_entry, "[del] mac <mac> bd <bd> ip <ip4>") \ _(one_l2_arp_bd_get, "") \ _(one_l2_arp_entries_get, "bd <bridge-domain>") \ _(one_stats_enable_disable, "enable|disable") \ |