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/ip_carp.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/ip_carp.c')
-rw-r--r-- | sys/netinet/ip_carp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_carp.c b/sys/netinet/ip_carp.c index 96b44ff497d..3488407426d 100644 --- a/sys/netinet/ip_carp.c +++ b/sys/netinet/ip_carp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_carp.c,v 1.267 2015/09/10 16:41:30 mikeb Exp $ */ +/* $OpenBSD: ip_carp.c,v 1.268 2015/09/11 08:17:06 claudio Exp $ */ /* * Copyright (c) 2002 Michael Shalayeff. All rights reserved. @@ -1174,7 +1174,7 @@ carp_send_ad(void *v) sc->sc_if.if_obytes += len; carpstats.carps_opackets6++; - error = ip6_output(m, NULL, NULL, 0, &sc->sc_im6o, NULL, NULL); + error = ip6_output(m, NULL, NULL, 0, &sc->sc_im6o, NULL); if (error) { if (error == ENOBUFS) carpstats.carps_onomem++; |