diff options
author | Hongjun Ni <hongjun.ni@intel.com> | 2018-10-05 02:26:34 +0800 |
---|---|---|
committer | Hongjun Ni <hongjun.ni@intel.com> | 2018-10-08 18:50:50 +0800 |
commit | 3a3b77f27b6d1469c5e1628cb508e193df20d6a0 (patch) | |
tree | 1c36f27e6b132d166623f81d66bf358a788f70ab | |
parent | 31a24b656050878af31122b085a345cfe35e742b (diff) |
Fix build issue due to vpp's function parameters change
Change-Id: I00282bc235cffb672911454af8d7dc7ab04fd7a1
Signed-off-by: Hongjun Ni <hongjun.ni@intel.com>
-rw-r--r-- | router/router/tap_inject_netlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/router/router/tap_inject_netlink.c b/router/router/tap_inject_netlink.c index bd5da49..8b00f05 100644 --- a/router/router/tap_inject_netlink.c +++ b/router/router/tap_inject_netlink.c @@ -138,7 +138,7 @@ add_del_neigh (ns_neigh_t * n, int is_del) } else vnet_unset_ip6_ethernet_neighbor (vm, sw_if_index, - (ip6_address_t *) n->dst, n->lladdr, ETHER_ADDR_LEN); + (ip6_address_t *) n->dst); } } |