Fix for resolving mac address when the destination address is a gateway.

Remove some dead code while at it.

Sponsored by:	Mellanox Technologies
MFC after:	1 week
This commit is contained in:
Hans Petter Selasky 2016-04-21 16:04:58 +00:00
parent 8dfea46460
commit a296502fe0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=298412

View File

@ -333,17 +333,18 @@ static int addr_resolve(struct sockaddr *src_in,
switch (dst_in->sa_family) {
#ifdef INET
case AF_INET:
error = arpresolve(ifp, is_gw, NULL, dst_in, edst, NULL);
error = arpresolve(ifp, is_gw, NULL,
is_gw ? rte->rt_gateway : dst_in, edst, NULL);
break;
#endif
#ifdef INET6
case AF_INET6:
error = nd6_resolve(ifp, is_gw, NULL, dst_in, edst, NULL);
error = nd6_resolve(ifp, is_gw, NULL,
is_gw ? rte->rt_gateway : dst_in, edst, NULL);
break;
#endif
default:
/* XXX: Shouldn't happen. */
error = -EINVAL;
break;
}
RTFREE(rte);
if (error == 0) {