Skip to content

Commit

Permalink
nd6_output() type mismatch. KAME PR 600
Browse files Browse the repository at this point in the history
  • Loading branch information
itojun committed Mar 16, 2004
1 parent 8a977dc commit d1930d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kame/sys/net/pf.c
Expand Up @@ -5026,7 +5026,7 @@ pf_route6(struct mbuf **m, struct pf_rule *r, int dir, struct ifnet *oifp,
if (IN6_IS_ADDR_LINKLOCAL(&dst->sin6_addr))
dst->sin6_addr.s6_addr16[1] = htons(ifp->if_index);
if ((u_long)m0->m_pkthdr.len <= ifp->if_mtu) {
error = nd6_output(ifp, ifp, m0, &dst->sin6_addr, NULL);
error = nd6_output(ifp, ifp, m0, dst, NULL);
} else {
in6_ifstat_inc(ifp, ifs6_in_toobig);
if (r->rt != PF_DUPTO)
Expand Down

0 comments on commit d1930d8

Please sign in to comment.