diff options
author | Neale Ranns <nranns@cisco.com> | 2017-01-09 01:00:45 -0800 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2017-01-10 14:09:55 +0000 |
commit | 75152289284aaf1116d62c6cdef5a3b0c793fa15 (patch) | |
tree | 7ced5e87b0db3eabdc5062d1b589d21962116521 /src/vnet/ip/ip_api.c | |
parent | 553a41190963099631a73fb0a77b07b871d65e70 (diff) |
IPv6 NS RS tests and fixes
includes Fix for VPP-584 with API change to remove prefix length from LL programming
Change-Id: If860751c35e60255fb977f73bc33e8c2649e728e
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/ip/ip_api.c')
-rw-r--r-- | src/vnet/ip/ip_api.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/vnet/ip/ip_api.c b/src/vnet/ip/ip_api.c index cd9b7397d29..aafde464445 100644 --- a/src/vnet/ip/ip_api.c +++ b/src/vnet/ip/ip_api.c @@ -1132,8 +1132,7 @@ static void error = set_ip6_link_local_address (vm, ntohl (mp->sw_if_index), - (ip6_address_t *) mp->address, - mp->address_length); + (ip6_address_t *) mp->address); if (error) { clib_error_report (error); |