diff options
| author | Julian Elischer <julian@FreeBSD.org> | 2004-05-29 00:51:19 +0000 |
|---|---|---|
| committer | Julian Elischer <julian@FreeBSD.org> | 2004-05-29 00:51:19 +0000 |
| commit | f8aae7776f85d2fa8aa93f73c37782cd9e1204c6 (patch) | |
| tree | 90dfb9283e4889f34526e006d0e40a59d5312611 /sys/netgraph/ng_sppp.c | |
| parent | ad7df741c9173bdd5763a9d95343cb071a7885ff (diff) | |
Notes
Diffstat (limited to 'sys/netgraph/ng_sppp.c')
| -rw-r--r-- | sys/netgraph/ng_sppp.c | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/sys/netgraph/ng_sppp.c b/sys/netgraph/ng_sppp.c index 144e4dbcc3974..8461f8b8dde99 100644 --- a/sys/netgraph/ng_sppp.c +++ b/sys/netgraph/ng_sppp.c @@ -92,18 +92,15 @@ static const struct ng_cmdlist ng_sppp_cmds[] = { /* Node type descriptor */ static struct ng_type typestruct = { - NG_ABI_VERSION, - NG_SPPP_NODE_TYPE, - NULL, - ng_sppp_constructor, - ng_sppp_rcvmsg, - ng_sppp_shutdown, - ng_sppp_newhook, - NULL, - NULL, - ng_sppp_rcvdata, - ng_sppp_disconnect, - ng_sppp_cmds + .version = NG_ABI_VERSION, + .name = NG_SPPP_NODE_TYPE, + .constructor = ng_sppp_constructor, + .rcvmsg = ng_sppp_rcvmsg, + .shutdown = ng_sppp_shutdown, + .newhook = ng_sppp_newhook, + .rcvdata = ng_sppp_rcvdata, + .disconnect = ng_sppp_disconnect, + .cmdlist = ng_sppp_cmds, }; NETGRAPH_INIT(sppp, &typestruct); |
