diff options
author | 2015-09-11 08:17:06 +0000 | |
---|---|---|
committer | 2015-09-11 08:17:06 +0000 | |
commit | 09d936d6f345151d16059ae6ce2d007bb9e70246 (patch) | |
tree | ec1a8231014a9fa77d6bc4b753e1f8abee5ade11 /sys/netinet/tcp_output.c | |
parent | Don't spoof GPT OpenBSD partitions. Simply record and use the first one (diff) | |
download | wireguard-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_output.c')
-rw-r--r-- | sys/netinet/tcp_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index f52ea666340..aa320da5cd9 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_output.c,v 1.113 2015/07/13 23:11:37 bluhm Exp $ */ +/* $OpenBSD: tcp_output.c,v 1.114 2015/09/11 08:17:06 claudio Exp $ */ /* $NetBSD: tcp_output.c,v 1.16 1997/06/03 16:17:09 kml Exp $ */ /* @@ -1116,7 +1116,7 @@ send: } error = ip6_output(m, tp->t_inpcb->inp_outputopts6, &tp->t_inpcb->inp_route6, - 0, NULL, NULL, tp->t_inpcb); + 0, NULL, tp->t_inpcb); break; #endif /* INET6 */ } |