diff options
author | 2000-01-13 06:02:31 +0000 | |
---|---|---|
committer | 2000-01-13 06:02:31 +0000 | |
commit | f155f441deb9ad35c51df732b21e5693a23e7a58 (patch) | |
tree | 9628ac26954ef1d9829aedbfe12014967f25b188 | |
parent | We do need netinet/ip_ip4.h after all... (diff) | |
download | wireguard-openbsd-f155f441deb9ad35c51df732b21e5693a23e7a58.tar.xz wireguard-openbsd-f155f441deb9ad35c51df732b21e5693a23e7a58.zip |
mbuf **, not mbuf * you twit...
-rw-r--r-- | sys/netinet/ip_ip4.c | 6 | ||||
-rw-r--r-- | sys/netinet/ip_ipsp.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/netinet/ip_ip4.c b/sys/netinet/ip_ip4.c index 51b794a3eee..54cd4609a77 100644 --- a/sys/netinet/ip_ip4.c +++ b/sys/netinet/ip_ip4.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ip4.c,v 1.46 2000/01/13 05:03:45 angelos Exp $ */ +/* $OpenBSD: ip_ip4.c,v 1.47 2000/01/13 06:02:31 angelos Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -100,9 +100,9 @@ struct ip4stat ip4stat; * Really only a wrapper for ip4_input(), for use with IPv6. */ int -ip4_input6(struct mbuf *m, int *offp, int proto) +ip4_input6(struct mbuf **m, int *offp, int proto) { - ip4_input(m, *offp); + ip4_input(*m, *offp); return IPPROTO_DONE; } #endif /* INET6 */ diff --git a/sys/netinet/ip_ipsp.h b/sys/netinet/ip_ipsp.h index e0769b1fc08..4d240bc2b8b 100644 --- a/sys/netinet/ip_ipsp.h +++ b/sys/netinet/ip_ipsp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipsp.h,v 1.57 2000/01/13 05:03:45 angelos Exp $ */ +/* $OpenBSD: ip_ipsp.h,v 1.58 2000/01/13 06:02:31 angelos Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -552,7 +552,7 @@ extern void ipe4_input __P((struct mbuf *, ...)); extern void ip4_input __P((struct mbuf *, ...)); #ifdef INET6 -extern int ip4_input6 __P((struct mbuf *, int *, int)); +extern int ip4_input6 __P((struct mbuf **, int *, int)); #endif /* INET */ /* XF_ETHERIP */ |