summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/ng_ppp.c
diff options
context:
space:
mode:
authorarchie <archie@FreeBSD.org>2000-12-18 17:18:35 +0000
committerarchie <archie@FreeBSD.org>2000-12-18 17:18:35 +0000
commit00bc5277358235f406d4d46497c959c1c486399a (patch)
tree68a09914e9ae2da20a594ab61dd9f2200de3744a /sys/netgraph/ng_ppp.c
parentda659a35600899a3ec806b3a348fca69d2e4c64a (diff)
downloadFreeBSD-src-00bc5277358235f406d4d46497c959c1c486399a.zip
FreeBSD-src-00bc5277358235f406d4d46497c959c1c486399a.tar.gz
Use "node->ID" for the node's ID, instead of "(long)node".
Reported by: julian
Diffstat (limited to 'sys/netgraph/ng_ppp.c')
-rw-r--r--sys/netgraph/ng_ppp.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/netgraph/ng_ppp.c b/sys/netgraph/ng_ppp.c
index d5afd9c..88caa63 100644
--- a/sys/netgraph/ng_ppp.c
+++ b/sys/netgraph/ng_ppp.c
@@ -561,12 +561,8 @@ ng_ppp_rcvmsg(node_p node, struct ng_mesg *msg,
if ((error = ng_path2node(node, raddr, &origNode, NULL)) != 0)
ERROUT(error);
snprintf(path, sizeof(path), "[%lx]:%s",
- (long)node, NG_PPP_HOOK_VJC_IP);
+ (long)node->ID, NG_PPP_HOOK_VJC_IP);
return ng_send_msg(origNode, msg, path, NULL, NULL, rptr);
-/* XXX Archie, looks like you are using the wrong value for the ID here..
- you can't use a node address as a node-ID any more..
-But it may be that you can use the new 'hook' arg for ng_send_msg()
-to achieve a more efficient resuld than an ID anyhow. */
}
default:
error = EINVAL;
OpenPOWER on IntegriCloud