summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_input.c
diff options
context:
space:
mode:
authorclaudio <claudio@openbsd.org>2015-09-11 08:17:06 +0000
committerclaudio <claudio@openbsd.org>2015-09-11 08:17:06 +0000
commit09d936d6f345151d16059ae6ce2d007bb9e70246 (patch)
treeec1a8231014a9fa77d6bc4b753e1f8abee5ade11 /sys/netinet/tcp_input.c
parentDon't spoof GPT OpenBSD partitions. Simply record and use the first one (diff)
downloadwireguard-openbsd-09d936d6f345151d16059ae6ce2d007bb9e70246.tar.xz
wireguard-openbsd-09d936d6f345151d16059ae6ce2d007bb9e70246.zip
Kill yet another argument to functions in IPv6. This time ip6_output's
ifpp - XXX: just for statistics ifpp is always NULL in all callers so that statistic confirms ifpp is dying OK mpi@
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r--sys/netinet/tcp_input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c
index 4493a24d6b7..f7c98b7f756 100644
--- a/sys/netinet/tcp_input.c
+++ b/sys/netinet/tcp_input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcp_input.c,v 1.304 2015/09/10 13:36:44 bluhm Exp $ */
+/* $OpenBSD: tcp_input.c,v 1.305 2015/09/11 08:17:06 claudio Exp $ */
/* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */
/*
@@ -4367,7 +4367,7 @@ syn_cache_respond(struct syn_cache *sc, struct mbuf *m)
ro->ro_rt ? ro->ro_rt->rt_ifp : NULL);
error = ip6_output(m, NULL /*XXX*/, (struct route_in6 *)ro, 0,
- NULL, NULL, NULL);
+ NULL, NULL);
break;
#endif
default: