diff options
author | Neale Ranns <nranns@cisco.com> | 2017-04-13 00:44:52 -0700 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2017-04-13 09:20:30 +0000 |
commit | 2594216a9a3673bbf301f9ae630aaa452a27ce4b (patch) | |
tree | d854094920ed4c1727654baa706ef3ffb003b190 /src/vnet/lisp-gpe/lisp_gpe_tunnel.c | |
parent | 00c14a94c34fac89e6e589c4a7aad20d8dd183dc (diff) |
Remove unsed parameter from fib_table_entry_special_add() (only used in FIB tests). The DPO was incorrectly initialised with FIB_PROTO_MAX
Change-Id: I962df9e162e4dfb6837a5ce79ea795d5ff2d7315
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/lisp-gpe/lisp_gpe_tunnel.c')
-rw-r--r-- | src/vnet/lisp-gpe/lisp_gpe_tunnel.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/vnet/lisp-gpe/lisp_gpe_tunnel.c b/src/vnet/lisp-gpe/lisp_gpe_tunnel.c index 444bfe14d2b..dd6c6fddfd9 100644 --- a/src/vnet/lisp-gpe/lisp_gpe_tunnel.c +++ b/src/vnet/lisp-gpe/lisp_gpe_tunnel.c @@ -179,8 +179,7 @@ lisp_gpe_tunnel_find_or_create_and_lock (const locator_pair_t * pair, lgt->fib_entry_index = fib_table_entry_special_add (rloc_fib_index, &pfx, FIB_SOURCE_RR, - FIB_ENTRY_FLAG_NONE, - ADJ_INDEX_INVALID); + FIB_ENTRY_FLAG_NONE); hash_set_mem (lisp_gpe_tunnel_db, &lgt->key, (lgt - lisp_gpe_tunnel_pool)); |