From 8227759e38f2e645a4c744231ad20cf2a311c996 Mon Sep 17 00:00:00 2001 From: bde Date: Fri, 24 Nov 1995 11:43:55 +0000 Subject: Undid bogus cleanups. 0 was mistyped as NULL. --- sys/netipx/ipx_input.c | 4 ++-- sys/netipx/spx_usrreq.c | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'sys/netipx') 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 @@ -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 @@ -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; } } -- cgit v1.1