summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/netinet/ip_input.c6
-rw-r--r--sys/netipx/ipx_ip.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c
index 160fac4048d..abaef2d5bf6 100644
--- a/sys/netinet/ip_input.c
+++ b/sys/netinet/ip_input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_input.c,v 1.139 2006/05/29 20:42:27 claudio Exp $ */
+/* $OpenBSD: ip_input.c,v 1.140 2006/06/15 10:08:34 pascoe Exp $ */
/* $NetBSD: ip_input.c,v 1.30 1996/03/16 23:53:58 christos Exp $ */
/*
@@ -1488,9 +1488,9 @@ ip_forward(m, srcrt)
}
}
- error = ip_output(m, (struct mbuf *)0, &ipforward_rt,
+ error = ip_output(m, (struct mbuf *)NULL, &ipforward_rt,
(IP_FORWARDING | (ip_directedbcast ? IP_ALLOWBROADCAST : 0)),
- 0, (void *)NULL, (void *)NULL);
+ (void *)NULL, (void *)NULL);
if (error)
ipstat.ips_cantforward++;
else {
diff --git a/sys/netipx/ipx_ip.c b/sys/netipx/ipx_ip.c
index 1855c21134f..738ecb744d0 100644
--- a/sys/netipx/ipx_ip.c
+++ b/sys/netipx/ipx_ip.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ipx_ip.c,v 1.21 2006/03/05 21:48:57 miod Exp $ */
+/* $OpenBSD: ipx_ip.c,v 1.22 2006/06/15 10:08:34 pascoe Exp $ */
/*-
*
@@ -300,7 +300,7 @@ ipxipoutput(ifp, m, dst, rt)
/*
* Output final datagram.
*/
- error = ip_output(m, NULL, ro, SO_BROADCAST, NULL, NULL, NULL);
+ error = ip_output(m, NULL, ro, SO_BROADCAST, NULL, NULL);
if (error) {
ifn->ifen_ifnet.if_oerrors++;
ifn->ifen_ifnet.if_ierrors = error;