diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2015-09-11 08:17:07 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2015-09-11 08:17:07 +0000 |
commit | 6e2fd864ccafbc76f535f19cb553dbfedb9f4ee0 (patch) | |
tree | 25dc52aeb65b497137b43c6b844c8134f2cceafa /sys/netinet6/raw_ip6.c | |
parent | 4973e1d10a5fc2c8b4ce4224cae9df3a9ecab73b (diff) |
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 |