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/net/if_gif.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/net/if_gif.c')
-rw-r--r-- | sys/net/if_gif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_gif.c b/sys/net/if_gif.c index 0d4eb4e8663..c30b65872bb 100644 --- a/sys/net/if_gif.c +++ b/sys/net/if_gif.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_gif.c,v 1.78 2015/09/01 21:24:04 bluhm Exp $ */ +/* $OpenBSD: if_gif.c,v 1.79 2015/09/11 08:17:06 claudio Exp $ */ /* $KAME: if_gif.c,v 1.43 2001/02/20 08:51:07 itojun Exp $ */ /* @@ -235,7 +235,7 @@ gif_start(struct ifnet *ifp) * of inner packet, to achieve path MTU discovery for * encapsulated packets. */ - ip6_output(m, 0, NULL, IPV6_MINMTU, 0, NULL, NULL); + ip6_output(m, 0, NULL, IPV6_MINMTU, 0, NULL); break; #endif default: |