diff options
author | Neale Ranns <nranns@cisco.com> | 2019-07-29 12:59:45 +0000 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-07-31 10:08:05 +0000 |
commit | 5ca2a8ae19c93d24070df066d027da791294b827 (patch) | |
tree | 19b8e6f95923e3e4a4a8c1369b6b68e097464c43 /src/plugins/l3xc | |
parent | 6b43ce57cb5620c936b38ff9c5443b3f0f447170 (diff) |
fib: fix calls to unformat_fib_path
Type: fix
Ticket: 1728
Change-Id: I679c2b8c5b0f751c9476db3669ab3f6c26dcdd28
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/plugins/l3xc')
-rw-r--r-- | src/plugins/l3xc/l3xc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/l3xc/l3xc.c b/src/plugins/l3xc/l3xc.c index 77c062f39d6..9839278dfb2 100644 --- a/src/plugins/l3xc/l3xc.c +++ b/src/plugins/l3xc/l3xc.c @@ -199,6 +199,7 @@ l3xc_cmd (vlib_main_t * vm, unformat_input_t _line_input, *line_input = &_line_input; fib_route_path_t *rpaths = NULL, rpath; u32 sw_if_index, is_del, is_ip6; + dpo_proto_t payload_proto; vnet_main_t *vnm; int rv = 0; @@ -224,7 +225,7 @@ l3xc_cmd (vlib_main_t * vm, else if (unformat (line_input, "add")) is_del = 0; else if (unformat (line_input, "via %U", - unformat_fib_route_path, &rpath)) + unformat_fib_route_path, &rpath, &payload_proto)) vec_add1 (rpaths, rpath); else return (clib_error_return (0, "unknown input '%U'", |