aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph/ng_async.c
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>2000-12-18 20:03:32 +0000
committerJulian Elischer <julian@FreeBSD.org>2000-12-18 20:03:32 +0000
commit589f6ed8ce4b9da11cbdce95d6dcf9ad45792175 (patch)
tree534b2b7e8dd4251f264f5266d72c7c260db68933 /sys/netgraph/ng_async.c
parentde2bcc634024809e51647e02d8733bc78881dfb6 (diff)
downloadsrc-589f6ed8ce4b9da11cbdce95d6dcf9ad45792175.tar.gz
src-589f6ed8ce4b9da11cbdce95d6dcf9ad45792175.zip
Divorce the kernel binary ABI version number from the message
format version number. (userland programs should not need to be recompiled when the netgraph kernel internal ABI is changed. Also fix modules that don;t handle the fact that a caller may not supply a return message pointer. (benign at the moment because the calling code checks, but that will change)
Notes
Notes: svn path=/head/; revision=70159
Diffstat (limited to 'sys/netgraph/ng_async.c')
-rw-r--r--sys/netgraph/ng_async.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netgraph/ng_async.c b/sys/netgraph/ng_async.c
index 8dc951a1f040..cbc51bb70504 100644
--- a/sys/netgraph/ng_async.c
+++ b/sys/netgraph/ng_async.c
@@ -148,7 +148,7 @@ static const struct ng_cmdlist nga_cmdlist[] = {
/* Define the netgraph node type */
static struct ng_type typestruct = {
- NG_VERSION,
+ NG_ABI_VERSION,
NG_ASYNC_NODE_TYPE,
NULL,
nga_constructor,