diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2008-05-15 19:40:39 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2008-05-15 19:40:39 +0000 |
commit | de28a5488d238ee5f0b97a2d204f218adeb88e8e (patch) | |
tree | 61b5440c53aaa5d75c8892be09c31d8dfce9c3da /sys/netinet/udp_usrreq.c | |
parent | d35a433ba50c5edc5ee1e5f646428209ec1e7800 (diff) |
divert for ipv6; ok henning, pyr
Diffstat (limited to 'sys/netinet/udp_usrreq.c')
-rw-r--r-- | sys/netinet/udp_usrreq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c index d1abd1f15f3..1bcd75bbe20 100644 --- a/sys/netinet/udp_usrreq.c +++ b/sys/netinet/udp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udp_usrreq.c,v 1.118 2008/05/09 02:56:36 markus Exp $ */ +/* $OpenBSD: udp_usrreq.c,v 1.119 2008/05/15 19:40:38 markus Exp $ */ /* $NetBSD: udp_usrreq.c,v 1.28 1996/03/16 23:54:03 christos Exp $ */ /* @@ -545,7 +545,7 @@ udp_input(struct mbuf *m, ...) #ifdef INET6 if (ip6) { inp = in6_pcblookup_listen(&udbtable, - &ip6->ip6_dst, uh->uh_dport, inpl_reverse); + &ip6->ip6_dst, uh->uh_dport, inpl_reverse, m); } else #endif /* INET6 */ inp = in_pcblookup_listen(&udbtable, |