diff options
author | gpalmer <gpalmer@FreeBSD.org> | 1996-05-08 04:38:22 +0000 |
---|---|---|
committer | gpalmer <gpalmer@FreeBSD.org> | 1996-05-08 04:38:22 +0000 |
commit | f8bbf6c4d993b95b988ea91c0e3acbc7d0346d25 (patch) | |
tree | 8e9eb6dd9d1dacac9516714f590c032c94a18d77 /sys/netipx/ipx_proto.c | |
parent | 301f2161baf4ebfde45826ab16758bb24802f9b2 (diff) | |
download | FreeBSD-src-f8bbf6c4d993b95b988ea91c0e3acbc7d0346d25.zip FreeBSD-src-f8bbf6c4d993b95b988ea91c0e3acbc7d0346d25.tar.gz |
Zero out some (unused) entries in the ipxsw initiliser which only lead to
compile-tiome warnings.
Tested by: John Hay <jhay@mikom.csir.co.za>
Diffstat (limited to 'sys/netipx/ipx_proto.c')
-rw-r--r-- | sys/netipx/ipx_proto.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/netipx/ipx_proto.c b/sys/netipx/ipx_proto.c index 4764455..0f098bf 100644 --- a/sys/netipx/ipx_proto.c +++ b/sys/netipx/ipx_proto.c @@ -33,7 +33,7 @@ * * @(#)ipx_proto.c * - * $Id: ipx_proto.c,v 1.3 1995/11/04 09:03:18 julian Exp $ + * $Id: ipx_proto.c,v 1.4 1996/01/05 20:47:05 wollman Exp $ */ #include <sys/param.h> @@ -55,7 +55,7 @@ struct protosw ipxsw[] = { { 0, &ipxdomain, 0, 0, - 0, ipx_output, 0, 0, + 0, 0, 0, 0, 0, ipx_init, 0, 0, 0 }, @@ -65,22 +65,22 @@ struct protosw ipxsw[] = { 0, 0, 0, 0 }, { SOCK_STREAM, &ipxdomain, IPXPROTO_SPX, PR_CONNREQUIRED|PR_WANTRCVD, - spx_input, 0, spx_ctlinput, spx_ctloutput, + 0, 0, spx_ctlinput, spx_ctloutput, spx_usrreq, spx_init, spx_fasttimo, spx_slowtimo, 0 }, { SOCK_SEQPACKET,&ipxdomain, IPXPROTO_SPX, PR_CONNREQUIRED|PR_WANTRCVD|PR_ATOMIC, - spx_input, 0, spx_ctlinput, spx_ctloutput, + 0, 0, spx_ctlinput, spx_ctloutput, spx_usrreq_sp, 0, 0, 0, 0 }, { SOCK_RAW, &ipxdomain, IPXPROTO_RAW, PR_ATOMIC|PR_ADDR, - ipx_input, ipx_output, 0, ipx_ctloutput, + 0, 0, 0, ipx_ctloutput, ipx_raw_usrreq, 0, 0, 0, 0 }, { SOCK_RAW, &ipxdomain, IPXPROTO_ERROR, PR_ATOMIC|PR_ADDR, - ipx_ctlinput, ipx_output, 0, ipx_ctloutput, + 0, 0, 0, ipx_ctloutput, ipx_raw_usrreq, 0, 0, 0, 0 }, |