diff options
author | Simon Zhang <yuwei1.zhang@intel.com> | 2019-08-25 15:30:45 +0800 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-08-29 12:35:14 +0000 |
commit | e7eba48937c52478d3844745ebb63a4b9ce8d681 (patch) | |
tree | bde0a1b7f11853962ceba8b48b6335860e145203 /src/plugins/gbp/gbp_policy_dpo.h | |
parent | 71f36067ca923fa4eb10060d6f6878f5fa864673 (diff) |
ip: remove unused function parameter
Type: refactor
Signed-off-by: Simon Zhang <yuwei1.zhang@intel.com>
Change-Id: I8674ff5f6f6336b256b7df8187afbb36ddef71fb
Diffstat (limited to 'src/plugins/gbp/gbp_policy_dpo.h')
-rw-r--r-- | src/plugins/gbp/gbp_policy_dpo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/gbp/gbp_policy_dpo.h b/src/plugins/gbp/gbp_policy_dpo.h index 1dc11ab2e32..77ca5d93bd0 100644 --- a/src/plugins/gbp/gbp_policy_dpo.h +++ b/src/plugins/gbp/gbp_policy_dpo.h @@ -96,7 +96,7 @@ gbp_classify_get_gpd (const ip4_address_t * ip4, const ip6_address_t * ip6, if (ip4) lbi = ip4_fib_forwarding_lookup (fib_index, ip4); else if (ip6) - lbi = ip6_fib_table_fwding_lookup (&ip6_main, fib_index, ip6); + lbi = ip6_fib_table_fwding_lookup (fib_index, ip6); else return 0; |