diff options
| -rw-r--r-- | sys/modules/netgraph/Makefile | 4 | ||||
| -rw-r--r-- | sys/netgraph/ng_bridge.c | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/sys/modules/netgraph/Makefile b/sys/modules/netgraph/Makefile index 00babc784848e..c47386c9ce792 100644 --- a/sys/modules/netgraph/Makefile +++ b/sys/modules/netgraph/Makefile @@ -1,11 +1,9 @@ # $Whistle: Makefile,v 1.5 1999/01/24 06:48:37 archie Exp $ # $FreeBSD$ -SUBDIR= async bpf cisco echo ether frame_relay hole iface ksocket lmi \ +SUBDIR= async bpf bridge cisco echo ether frame_relay hole iface ksocket lmi \ netgraph one2many ppp pppoe pptpgre rfc1490 socket tee tty UI vjc -BROKENDIR= bridge - .if !defined(NOCRYPT) && exists(${.CURDIR}/../../crypto/rc4/rc4.c) SUBDIR+= mppc .endif diff --git a/sys/netgraph/ng_bridge.c b/sys/netgraph/ng_bridge.c index 4c27798f6d4ec..e33d7435306c6 100644 --- a/sys/netgraph/ng_bridge.c +++ b/sys/netgraph/ng_bridge.c @@ -302,7 +302,7 @@ ng_bridge_constructor(node_p *nodep) MALLOC(priv, priv_p, sizeof(*priv), M_NETGRAPH, M_NOWAIT | M_ZERO); if (priv == NULL) return (ENOMEM); - callout_init(&priv->timer); + callout_init(&priv->timer, 0); /* Allocate and initialize hash table, etc. */ MALLOC(priv->tab, struct ng_bridge_bucket *, |
