diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2017-03-03 15:48:03 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2017-03-03 15:48:03 +0000 |
commit | d089783796e16ef9fec09f9ecb411d35fbce74b2 (patch) | |
tree | 475918c5ee17f5b8d9a7ab822355e050a60b7f76 /sys/netinet/ip_var.h | |
parent | dcfcb1baf5db36826bef379ef349e1fd43de7d0e (diff) |
Convert the variable argument list of the pr_output functions to
fixed parameters.
OK mpi@ claudio@ dhill@
Diffstat (limited to 'sys/netinet/ip_var.h')
-rw-r--r-- | sys/netinet/ip_var.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/ip_var.h b/sys/netinet/ip_var.h index 285d64d9402..2f3d791c52a 100644 --- a/sys/netinet/ip_var.h +++ b/sys/netinet/ip_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_var.h,v 1.68 2017/02/01 20:59:47 dhill Exp $ */ +/* $OpenBSD: ip_var.h,v 1.69 2017/03/03 15:48:02 bluhm Exp $ */ /* $NetBSD: ip_var.h,v 1.16 1996/02/13 23:43:20 christos Exp $ */ /* @@ -253,7 +253,8 @@ void ip_forward(struct mbuf *, struct ifnet *, struct rtentry *, int); int rip_ctloutput(int, struct socket *, int, int, struct mbuf *); void rip_init(void); int rip_input(struct mbuf **, int *, int); -int rip_output(struct mbuf *, ...); +int rip_output(struct mbuf *, struct socket *, struct sockaddr *, + struct mbuf *); int rip_usrreq(struct socket *, int, struct mbuf *, struct mbuf *, struct mbuf *, struct proc *); |