diff options
Diffstat (limited to 'sys/netgraph/ng_split.c')
-rw-r--r-- | sys/netgraph/ng_split.c | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/sys/netgraph/ng_split.c b/sys/netgraph/ng_split.c index 359d310..4d45efc 100644 --- a/sys/netgraph/ng_split.c +++ b/sys/netgraph/ng_split.c @@ -53,18 +53,13 @@ static ng_disconnect_t ng_split_disconnect; /* Node type descriptor */ static struct ng_type typestruct = { - NG_ABI_VERSION, - NG_SPLIT_NODE_TYPE, - NULL, - ng_split_constructor, - NULL, - ng_split_shutdown, - ng_split_newhook, - NULL, - NULL, - ng_split_rcvdata, - ng_split_disconnect, - NULL + .version = NG_ABI_VERSION, + .name = NG_SPLIT_NODE_TYPE, + .constructor = ng_split_constructor, + .shutdown = ng_split_shutdown, + .newhook = ng_split_newhook, + .rcvdata = ng_split_rcvdata, + .disconnect = ng_split_disconnect, }; NETGRAPH_INIT(ng_split, &typestruct); |