diff options
author | bde <bde@FreeBSD.org> | 1995-11-24 11:43:55 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-11-24 11:43:55 +0000 |
commit | 8227759e38f2e645a4c744231ad20cf2a311c996 (patch) | |
tree | e2f2e14e560d8aebc910ea9aed3182714bebc6e5 /sys/netipx/ipx_input.c | |
parent | 4e69bf9d2a48abbab584d342741a40804c19ec7f (diff) | |
download | FreeBSD-src-8227759e38f2e645a4c744231ad20cf2a311c996.zip FreeBSD-src-8227759e38f2e645a4c744231ad20cf2a311c996.tar.gz |
Undid bogus cleanups. 0 was mistyped as NULL.
Diffstat (limited to 'sys/netipx/ipx_input.c')
-rw-r--r-- | sys/netipx/ipx_input.c | 4 |
1 files changed, 2 insertions, 2 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: |