Index: i4b_ing.c =================================================================== RCS file: /home/ncvs/src/sys/i4b/driver/i4b_ing.c,v retrieving revision 1.17 diff -u -r1.17 i4b_ing.c --- i4b_ing.c 10 Jun 2003 23:14:55 -0000 1.17 +++ i4b_ing.c 28 May 2004 14:52:14 -0000 @@ -198,18 +198,16 @@ /* Netgraph node type descriptor */ static struct ng_type typestruct = { - NG_ABI_VERSION, - NG_ING_NODE_TYPE, - NULL, - ng_ing_constructor, - ng_ing_rcvmsg, - ng_ing_shutdown, - ng_ing_newhook, - NULL, - ng_ing_connect, - ng_ing_rcvdata, - ng_ing_disconnect, - ng_ing_cmdlist + .version = NG_ABI_VERSION, + .name = NG_ING_NODE_TYPE, + .constructor = ng_ing_constructor, + .rcvmsg = ng_ing_rcvmsg, + .shutdown = ng_ing_shutdown, + .newhook = ng_ing_newhook, + .connect = ng_ing_connect, + .rcvdata = ng_ing_rcvdata, + .disconnect = ng_ing_disconnect, + .cmdlist = ng_ing_cmdlist, }; NETGRAPH_INIT_ORDERED(ing, &typestruct, SI_SUB_DRIVERS, SI_ORDER_ANY);