diff options
author | Neale Ranns <nranns@cisco.com> | 2019-10-07 08:23:38 +0000 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-10-07 08:23:38 +0000 |
commit | 46023762d1da674ff73954f0d1523d450bfcf03c (patch) | |
tree | 6a71491c695b4e57e08d9de6146382eb33b41554 /src | |
parent | df213385d391f21d99eaeaf066f0130a20f7ccde (diff) |
ip: MFIB CLI fix for parsing path flags
Type: fix
Change-Id: I7ed9726d8c5ca26715a84b004a18fd7f93142486
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/vnet/fib/fib_types.c | 4 | ||||
-rw-r--r-- | src/vnet/ip/lookup.c | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/vnet/fib/fib_types.c b/src/vnet/fib/fib_types.c index 44fa463dc50..7b07fa976a4 100644 --- a/src/vnet/fib/fib_types.c +++ b/src/vnet/fib/fib_types.c @@ -18,6 +18,7 @@ #include <vnet/fib/fib_types.h> #include <vnet/fib/fib_internal.h> #include <vnet/fib/fib_table.h> +#include <vnet/mfib/mfib_types.h> #include <vnet/mpls/mpls.h> /* @@ -609,6 +610,9 @@ unformat_fib_route_path (unformat_input_t * input, va_list * args) rpath->frp_weight = 1; rpath->frp_flags |= FIB_ROUTE_PATH_LOCAL; } + else if (unformat (input, "%U", + unformat_mfib_itf_flags, &rpath->frp_mitf_flags)) + ; else if (unformat (input, "out-labels")) { while (unformat (input, "%U", diff --git a/src/vnet/ip/lookup.c b/src/vnet/ip/lookup.c index 43a90a1b558..e354db77216 100644 --- a/src/vnet/ip/lookup.c +++ b/src/vnet/ip/lookup.c @@ -905,9 +905,6 @@ vnet_ip_mroute_cmd (vlib_main_t * vm, vec_add1 (rpaths, rpath); } else if (unformat (line_input, "%U", - unformat_mfib_itf_flags, &rpath.frp_mitf_flags)) - ; - else if (unformat (line_input, "%U", unformat_mfib_entry_flags, &eflags)) ; else |