Fix typo in NETGRAPH_INIT() macro.

This commit is contained in:
Archie Cobbs 2000-10-09 18:37:11 +00:00
parent 7eb9fca557
commit a89effcde1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=66887

View file

@ -280,7 +280,7 @@ static struct ng_type ng_bridge_typestruct = {
ng_bridge_disconnect,
ng_bridge_cmdlist,
};
NETGRAPH_INIT(ether, &ng_bridge_typestruct);
NETGRAPH_INIT(bridge, &ng_bridge_typestruct);
/* Depend on ng_ether so we can use the Ethernet parse type */
MODULE_DEPEND(ng_bridge, ng_ether, 1, 1, 1);