From 0c949560a12dd18943b66fe09bd06d3c34e5cf7a Mon Sep 17 00:00:00 2001 From: julian Date: Mon, 18 Dec 2000 20:03:32 +0000 Subject: 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) --- sys/netgraph/ng_echo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/netgraph/ng_echo.c') diff --git a/sys/netgraph/ng_echo.c b/sys/netgraph/ng_echo.c index 8ef95a4..6c46341 100644 --- a/sys/netgraph/ng_echo.c +++ b/sys/netgraph/ng_echo.c @@ -61,7 +61,7 @@ static ng_disconnect_t nge_disconnect; /* Netgraph type */ static struct ng_type typestruct = { - NG_VERSION, + NG_ABI_VERSION, NG_ECHO_NODE_TYPE, NULL, NULL, -- cgit v1.1