diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-01-13 06:02:32 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-01-13 06:02:32 +0000 |
commit | 351697197b1764429063e1db1b2022eb79066667 (patch) | |
tree | ba648afa13044698fea7b0fefceaa7b549943a47 | |
parent | 39f4463bd49d013962ef7b018f035f97e9cd9fdf (diff) |
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 */ |