diff options
author | Neale Ranns <nranns@cisco.com> | 2016-10-19 08:25:46 +0100 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2016-10-21 20:17:32 +0000 |
commit | 924d03a97b67c8172c38840558bba52ff1256ddd (patch) | |
tree | 13111e492cc993e3b0f88e1d9beaf483b19e1691 /vpp/vpp-api/api.c | |
parent | 670909eb6eea7c0d0c0e8d674771db23bb018f4a (diff) |
Fix Coverity Errors in FIB. This is mainly consolidating the vnet_link_t and fib_link_t enums into just vnet_link_t.
Change-Id: Id2147afec1a28e95fec86dfd524088cd56563f63
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'vpp/vpp-api/api.c')
-rw-r--r-- | vpp/vpp-api/api.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vpp/vpp-api/api.c b/vpp/vpp-api/api.c index 33f87702..cc067402 100644 --- a/vpp/vpp-api/api.c +++ b/vpp/vpp-api/api.c @@ -1046,7 +1046,6 @@ add_del_route_t_handler (u8 is_multipath, u32 next_hop_weight, u32 next_hop_out_label) { vnet_classify_main_t *cm = &vnet_classify_main; - fib_protocol_t proto = prefix->fp_proto; stats_main_t *sm = &stats_main; if (is_multipath) @@ -1116,7 +1115,7 @@ add_del_route_t_handler (u8 is_multipath, return VNET_API_ERROR_NO_SUCH_TABLE; } - dpo_set (&dpo, DPO_CLASSIFY, proto, + dpo_set (&dpo, DPO_CLASSIFY, dproto, classify_dpo_create (prefix->fp_proto, ntohl (classify_table_index))); } |