diff options
Diffstat (limited to 'sys/netipx')
-rw-r--r-- | sys/netipx/ipx_input.c | 4 | ||||
-rw-r--r-- | sys/netipx/spx_usrreq.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/netipx/ipx_input.c b/sys/netipx/ipx_input.c index ac68628..25bb85f 100644 --- a/sys/netipx/ipx_input.c +++ b/sys/netipx/ipx_input.c @@ -33,7 +33,7 @@ * * @(#)ipx_input.c * - * $Id: ipx_input.c,v 1.3 1995/10/31 23:36:30 julian Exp $ + * $Id: ipx_input.c,v 1.4 1995/11/04 09:02:54 julian Exp $ */ #include <sys/param.h> @@ -316,7 +316,7 @@ ipx_ctlinput(cmd, arg) switch (type) { case IPX_ERR_UNREACH_HOST: - ipx_pcbnotify(ipx, (int)ipxctlerrmap[cmd], ipx_abort, NULL); + ipx_pcbnotify(ipx, (int)ipxctlerrmap[cmd], ipx_abort, (long)0); break; case IPX_ERR_NOSOCK: diff --git a/sys/netipx/spx_usrreq.c b/sys/netipx/spx_usrreq.c index 27cedfe..91863e4 100644 --- a/sys/netipx/spx_usrreq.c +++ b/sys/netipx/spx_usrreq.c @@ -33,7 +33,7 @@ * * @(#)spx_usrreq.h * - * $Id: spx_usrreq.c,v 1.3 1995/10/31 23:36:46 julian Exp $ + * $Id: spx_usrreq.c,v 1.4 1995/11/04 09:03:43 julian Exp $ */ #include <sys/param.h> @@ -622,7 +622,7 @@ spx_ctlinput(cmd, arg) switch (type) { case IPX_ERR_UNREACH_HOST: - ipx_pcbnotify(na, (int)ipxctlerrmap[cmd], spx_abort, NULL); + ipx_pcbnotify(na, (int)ipxctlerrmap[cmd], spx_abort, (long)0); break; case IPX_ERR_TOO_BIG: @@ -639,7 +639,7 @@ spx_ctlinput(cmd, arg) break; case IPX_ERR_FULLUP: - ipx_pcbnotify(na, 0, spx_quench, NULL); + ipx_pcbnotify(na, 0, spx_quench, (long)0); break; } } |