diff options
author | Christopher Pascoe <pascoe@cvs.openbsd.org> | 2006-06-15 10:12:37 +0000 |
---|---|---|
committer | Christopher Pascoe <pascoe@cvs.openbsd.org> | 2006-06-15 10:12:37 +0000 |
commit | d52440cc1ef7f32c1cad7db71599b1adabaa1917 (patch) | |
tree | 1e2be080520d1639c0896d17f9b4664150ece529 /sys/netinet | |
parent | b24c55cd714fc1bf796b214184a2a74299ecccf4 (diff) |
Make number of varargs passed to ip_output match reality.
henning@ claudio@ ok
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/udp_usrreq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c index d29e3674852..74566e38954 100644 --- a/sys/netinet/udp_usrreq.c +++ b/sys/netinet/udp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udp_usrreq.c,v 1.108 2006/05/29 20:42:27 claudio Exp $ */ +/* $OpenBSD: udp_usrreq.c,v 1.109 2006/06/15 10:12:36 pascoe Exp $ */ /* $NetBSD: udp_usrreq.c,v 1.28 1996/03/16 23:54:03 christos Exp $ */ /* @@ -963,7 +963,7 @@ udp_output(struct mbuf *m, ...) error = ip_output(m, inp->inp_options, &inp->inp_route, inp->inp_socket->so_options & (SO_DONTROUTE | SO_BROADCAST | SO_JUMBO), - inp->inp_moptions, inp, (void *)NULL); + inp->inp_moptions, inp); bail: if (addr) { |