summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/ng_cisco.c
diff options
context:
space:
mode:
authorarchie <archie@FreeBSD.org>2002-08-22 00:30:03 +0000
committerarchie <archie@FreeBSD.org>2002-08-22 00:30:03 +0000
commitd8ca8557f2a88762784a87a5ad7952e7925b7ef9 (patch)
tree01952af29b3b8f705dc7b20a7c7924edacae9558 /sys/netgraph/ng_cisco.c
parent02c9dde601f6574cda62e65c86740d51e271605c (diff)
downloadFreeBSD-src-d8ca8557f2a88762784a87a5ad7952e7925b7ef9.zip
FreeBSD-src-d8ca8557f2a88762784a87a5ad7952e7925b7ef9.tar.gz
Don't use "NULL" when "0" is really meant.
Diffstat (limited to 'sys/netgraph/ng_cisco.c')
-rw-r--r--sys/netgraph/ng_cisco.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netgraph/ng_cisco.c b/sys/netgraph/ng_cisco.c
index 13d5dd3..f263f35 100644
--- a/sys/netgraph/ng_cisco.c
+++ b/sys/netgraph/ng_cisco.c
@@ -525,8 +525,8 @@ cisco_input(sc_p sc, item_p item)
NGM_CISCO_GET_IPADDR, 0, M_NOWAIT);
if (msg == NULL)
goto nomsg;
- NG_SEND_MSG_HOOK(dummy_error, sc->node, msg,
- sc->inet.hook, NULL);
+ NG_SEND_MSG_HOOK(dummy_error,
+ sc->node, msg, sc->inet.hook, 0);
/*
* XXX Now maybe we should set a flag telling
* our receiver to send this message when the response comes in
OpenPOWER on IntegriCloud