diff options
| author | Roman Kurakin <rik@FreeBSD.org> | 2004-05-29 13:17:28 +0000 |
|---|---|---|
| committer | Roman Kurakin <rik@FreeBSD.org> | 2004-05-29 13:17:28 +0000 |
| commit | 24f6353dc4ed947f8b6ac14bd4dd757eba31c859 (patch) | |
| tree | d1b8696ccf572d4655430c095a4c86ff669ae68b /sys/dev/ctau | |
| parent | 991fc65a92691d0d81c3dfda275dc949b6c8dc5b (diff) | |
Notes
Diffstat (limited to 'sys/dev/ctau')
| -rw-r--r-- | sys/dev/ctau/if_ct.c | 31 |
1 files changed, 9 insertions, 22 deletions
diff --git a/sys/dev/ctau/if_ct.c b/sys/dev/ctau/if_ct.c index d3df364023b2..bd6c97157586 100644 --- a/sys/dev/ctau/if_ct.c +++ b/sys/dev/ctau/if_ct.c @@ -2673,28 +2673,15 @@ static int ct_modevent (module_t mod, int type, void *unused) #ifdef NETGRAPH static struct ng_type typestruct = { -#if __FreeBSD_version >= 500000 - NG_ABI_VERSION, -#else - NG_VERSION, -#endif - NG_CT_NODE_TYPE, -#if __FreeBSD_version < 500000 && (defined KLD_MODULE) - ct_modevent, -#else - NULL, -#endif - ng_ct_constructor, - ng_ct_rcvmsg, - ng_ct_rmnode, - ng_ct_newhook, - NULL, - ng_ct_connect, - ng_ct_rcvdata, -#if __FreeBSD_version < 500000 - NULL, -#endif - ng_ct_disconnect + .version = NG_ABI_VERSION, + .name = NG_CT_NODE_TYPE, + .constructor = ng_ct_constructor, + .rcvmsg = ng_ct_rcvmsg, + .shutdown = ng_ct_rmnode, + .newhook = ng_ct_newhook, + .connect = ng_ct_connect, + .rcvdata = ng_ct_rcvdata, + .disconnect = ng_ct_disconnect }; #if __FreeBSD_version < 400000 |
