diff options
author | Christopher Pascoe <pascoe@cvs.openbsd.org> | 2006-06-15 10:08:35 +0000 |
---|---|---|
committer | Christopher Pascoe <pascoe@cvs.openbsd.org> | 2006-06-15 10:08:35 +0000 |
commit | f02e58257867622bb5c313afb151fa0eda5e58d8 (patch) | |
tree | 19396106e8bd6bb562158243277fcbb1fdd6ab44 /sys/netipx/ipx_ip.c | |
parent | 8e1d137156feaabc9707cb42be31332f82a1f8cb (diff) |
Make number of varargs passed to ip_output match reality.
henning@ claudio@ ok
Diffstat (limited to 'sys/netipx/ipx_ip.c')
-rw-r--r-- | sys/netipx/ipx_ip.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |