From 113a24d243071d21a3c6113ce3024dbbf68fc5f6 Mon Sep 17 00:00:00 2001 From: bde Date: Sat, 16 Dec 1995 02:14:44 +0000 Subject: Uniformized pr_ctlinput protosw functions. The third arg is now `void *' instead of caddr_t and it isn't optional (it never was). Most of the netipx (and netns) pr_ctlinput functions abuse the second arg instead of using the third arg but fixing this is beyond the scope of this round of changes. --- sys/net/raw_usrreq.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sys/net/raw_usrreq.c') diff --git a/sys/net/raw_usrreq.c b/sys/net/raw_usrreq.c index bf6f6bb..d100ee4 100644 --- a/sys/net/raw_usrreq.c +++ b/sys/net/raw_usrreq.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)raw_usrreq.c 8.1 (Berkeley) 6/10/93 - * $Id: raw_usrreq.c,v 1.5 1995/02/16 01:11:38 wollman Exp $ + * $Id: raw_usrreq.c,v 1.6 1995/05/30 08:08:22 rgrimes Exp $ */ #include @@ -129,9 +129,10 @@ raw_input(m0, proto, src, dst) /*ARGSUSED*/ void -raw_ctlinput(cmd, arg) +raw_ctlinput(cmd, arg, dummy) int cmd; struct sockaddr *arg; + void *dummy; { if (cmd < 0 || cmd > PRC_NCMDS) -- cgit v1.1