diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2001-05-20 19:19:58 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2001-05-20 19:19:58 +0000 |
commit | 5459043da474419a3c475b0b0606e501cfff8f7f (patch) | |
tree | 86fc2182711495fd574d9fa21ffde67586602c55 /sys/netinet/ip_var.h | |
parent | 87a8e3a7eff8e743546d3576558f5a9e99e33d98 (diff) |
Remove varargs from ipv4_input; cmetz@ deraadt@ ok.
Diffstat (limited to 'sys/netinet/ip_var.h')
-rw-r--r-- | sys/netinet/ip_var.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_var.h b/sys/netinet/ip_var.h index 425b67efb9f..4060671c6d9 100644 --- a/sys/netinet/ip_var.h +++ b/sys/netinet/ip_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_var.h,v 1.16 2001/05/01 09:55:49 provos Exp $ */ +/* $OpenBSD: ip_var.h,v 1.17 2001/05/20 19:19:57 fgsch Exp $ */ /* $NetBSD: ip_var.h,v 1.16 1996/02/13 23:43:20 christos Exp $ */ /* @@ -190,7 +190,7 @@ struct mbuf * void ip_stripoptions __P((struct mbuf *, struct mbuf *)); int ip_sysctl __P((int *, u_int, void *, size_t *, void *, size_t)); void ipintr __P((void)); -void ipv4_input __P((struct mbuf *, ...)); +void ipv4_input __P((struct mbuf *)); int rip_ctloutput __P((int, struct socket *, int, int, struct mbuf **)); void rip_init __P((void)); void rip_input __P((struct mbuf *, ...)); |