diff options
author | 2008-05-15 19:40:37 +0000 | |
---|---|---|
committer | 2008-05-15 19:40:37 +0000 | |
commit | a892881f854909ed1b5ef344e39a171343386632 (patch) | |
tree | f7a347e0af72d108befcefb48e6ea1985179adc8 /sys/netinet/tcp_input.c | |
parent | fix uninitialised variable; from ray@ (diff) | |
download | wireguard-openbsd-a892881f854909ed1b5ef344e39a171343386632.tar.xz wireguard-openbsd-a892881f854909ed1b5ef344e39a171343386632.zip |
divert for ipv6; ok henning, pyr
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index ab26e50f401..28a0d9cbef1 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.214 2008/05/09 02:44:54 markus Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.215 2008/05/15 19:40:38 markus Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -615,7 +615,7 @@ findpcb: #ifdef INET6 case AF_INET6: inp = in6_pcblookup_listen(&tcbtable, - &ip6->ip6_dst, th->th_dport, inpl_flags); + &ip6->ip6_dst, th->th_dport, inpl_flags, m); break; #endif /* INET6 */ case AF_INET: |