diff options
author | Florin Coras <fcoras@cisco.com> | 2016-07-18 17:06:20 +0200 |
---|---|---|
committer | Florin Coras <fcoras@cisco.com> | 2016-07-18 17:09:05 +0200 |
commit | bb4333802523b9569848beff94e7ff4ab23483b6 (patch) | |
tree | e3dbb4dfd6782f7c60d0e588191ee985a8ef9211 /vpp-api-test | |
parent | 4575fb2df7ba69e0ed85b30d49730845dbb9f966 (diff) |
Fix local eid API in VAT
Change-Id: I14fb0378944db5bf7a8843b4dc361de748659ece
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'vpp-api-test')
-rw-r--r-- | vpp-api-test/vat/api_format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vpp-api-test/vat/api_format.c b/vpp-api-test/vat/api_format.c index 84e9c4f6705..4c96cc1745b 100644 --- a/vpp-api-test/vat/api_format.c +++ b/vpp-api-test/vat/api_format.c @@ -10400,7 +10400,7 @@ api_lisp_add_del_local_eid(vat_main_t * vam) while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) { if (unformat(input, "del")) { is_add = 0; - } else if (unformat(input, "vni &d", &vni)) { + } else if (unformat(input, "vni %d", &vni)) { ; } else if (unformat(input, "eid %U/%d", unformat_ip4_address, &eidv4, &tmp_eid_lenght)) { |