summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2002-09-18 07:46:57 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2002-09-18 07:46:57 +0000
commit8cb0d190e5b806a628708076d1b67f50de5f5245 (patch)
tree11e449281ec998f53076ef80908d199313d2f2a2 /sys
parentf23e293e495b9d15ce14159582973b3f5d6b6f0b (diff)
mad typo, only null can take it
Diffstat (limited to 'sys')
-rw-r--r--sys/netipx/ipx_ip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netipx/ipx_ip.c b/sys/netipx/ipx_ip.c
index 782980532b1..436667d39ea 100644
--- a/sys/netipx/ipx_ip.c
+++ b/sys/netipx/ipx_ip.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ipx_ip.c,v 1.12 2002/08/28 15:43:03 pefo Exp $ */
+/* $OpenBSD: ipx_ip.c,v 1.13 2002/09/18 07:46:56 mickey Exp $ */
/*-
*
@@ -300,7 +300,7 @@ ipxipoutput(ifp, m, dst, rt)
/*
* Output final datagram.
*/
- error = (ip_output(m, (struct mbuf *)0, ro, SO_BROADCAST, (void *)NULL), (void *)NULL);
+ error = ip_output(m, NULL, ro, SO_BROADCAST, NULL, NULL, NULL);
if (error) {
ifn->ifen_ifnet.if_oerrors++;
ifn->ifen_ifnet.if_ierrors = error;