diff options
author | Onong Tayeng <otayeng@cisco.com> | 2020-09-11 17:22:07 +0530 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2020-09-11 18:06:29 +0000 |
commit | 8c6ba2957c985a1670e9fca6bc869008e6722364 (patch) | |
tree | 052f817ab1518eaa9e5d0960c2b2ea30abed45c5 /src | |
parent | f8b319359cd2a24271dbe7cebfc8a4147ab89727 (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
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 cfe936643fb..e3a2fe734be 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") \ |