Undid bogus cleanups. 0 was mistyped as NULL.

This commit is contained in:
Bruce Evans 1995-11-24 11:43:55 +00:00
parent 68b8d35346
commit e316debe42
2 changed files with 5 additions and 5 deletions

View File

@ -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:

View File

@ -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;
}
}