summaryrefslogtreecommitdiffstats
path: root/br-nf-bds/linux2.5/net/bridge/br_forward.c
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2002-09-10 17:35:52 +0000
committerBart De Schuymer <bdschuym@pandora.be>2002-09-10 17:35:52 +0000
commitb691b830a34d8fc063db9f4e299cf89676fbef82 (patch)
tree09593430670bcd1e50477fda7b61aa1a04b31c1b /br-nf-bds/linux2.5/net/bridge/br_forward.c
parentd1745c9cb1beca6b604571dcde98da0ea34d6b03 (diff)
*** empty log message ***
Diffstat (limited to 'br-nf-bds/linux2.5/net/bridge/br_forward.c')
-rw-r--r--br-nf-bds/linux2.5/net/bridge/br_forward.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/br-nf-bds/linux2.5/net/bridge/br_forward.c b/br-nf-bds/linux2.5/net/bridge/br_forward.c
index 1854fa4..a8cc91f 100644
--- a/br-nf-bds/linux2.5/net/bridge/br_forward.c
+++ b/br-nf-bds/linux2.5/net/bridge/br_forward.c
@@ -5,7 +5,7 @@
* Authors:
* Lennert Buytenhek <buytenh@gnu.org>
*
- * $Id: br_forward.c,v 1.1 2002/08/24 09:28:29 bdschuym Exp $
+ * $Id: br_forward.c,v 1.2 2002/09/10 17:38:19 bdschuym Exp $
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@@ -49,6 +49,9 @@ int br_forward_finish(struct sk_buff *skb)
static void __br_deliver(struct net_bridge_port *to, struct sk_buff *skb)
{
skb->dev = to->dev;
+#ifdef CONFIG_NETFILTER_DEBUG
+ skb->nf_debug = 0;
+#endif
NF_HOOK(PF_BRIDGE, NF_BR_LOCAL_OUT, skb, NULL, skb->dev,
br_forward_finish);
}