diff options
author | 2015-09-11 08:17:06 +0000 | |
---|---|---|
committer | 2015-09-11 08:17:06 +0000 | |
commit | 09d936d6f345151d16059ae6ce2d007bb9e70246 (patch) | |
tree | ec1a8231014a9fa77d6bc4b753e1f8abee5ade11 /sys/netinet6/raw_ip6.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/netinet6/raw_ip6.c')
-rw-r--r-- | sys/netinet6/raw_ip6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/raw_ip6.c b/sys/netinet6/raw_ip6.c index 6f337022c08..875eb3c7b7c 100644 --- a/sys/netinet6/raw_ip6.c +++ b/sys/netinet6/raw_ip6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: raw_ip6.c,v 1.83 2015/09/11 07:42:35 claudio Exp $ */ +/* $OpenBSD: raw_ip6.c,v 1.84 2015/09/11 08:17:06 claudio Exp $ */ /* $KAME: raw_ip6.c,v 1.69 2001/03/04 15:55:44 itojun Exp $ */ /* @@ -478,7 +478,7 @@ rip6_output(struct mbuf *m, ...) #endif error = ip6_output(m, optp, &in6p->inp_route6, flags, - in6p->inp_moptions6, NULL, in6p); + in6p->inp_moptions6, in6p); if (so->so_proto->pr_protocol == IPPROTO_ICMPV6) { icmp6stat.icp6s_outhist[type]++; } else |