summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArchie Cobbs <archie@FreeBSD.org>1999-11-19 05:50:29 +0000
committerArchie Cobbs <archie@FreeBSD.org>1999-11-19 05:50:29 +0000
commit0e97a08fe96d801ba5e34ac33631d6012b9a065f (patch)
tree725be0dff1ff6842e58976b2fb6cec13461f2ba0
parent62838fae89bb09d966b5e345bb7039d63458c251 (diff)
Notes
-rw-r--r--sys/netgraph/ng_rfc1490.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netgraph/ng_rfc1490.c b/sys/netgraph/ng_rfc1490.c
index 7f9ca5d35de8..6cd20a53e4ab 100644
--- a/sys/netgraph/ng_rfc1490.c
+++ b/sys/netgraph/ng_rfc1490.c
@@ -81,12 +81,12 @@
#define NLPID_ISIS 0x83
/* Node private data */
-struct private {
+struct ng_rfc1490_private {
hook_p downlink;
hook_p ppp;
hook_p inet;
};
-typedef struct private *priv_p;
+typedef struct ng_rfc1490_private *priv_p;
/* Netgraph node methods */
static ng_constructor_t ng_rfc1490_constructor;