summaryrefslogtreecommitdiffstats
path: root/kernel/linux/net/bridge/br_input.c
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2002-09-10 17:33:26 +0000
committerBart De Schuymer <bdschuym@pandora.be>2002-09-10 17:33:26 +0000
commitd1745c9cb1beca6b604571dcde98da0ea34d6b03 (patch)
tree204e66f400d8d97a41b817dbcdddb7e8fcf7ee27 /kernel/linux/net/bridge/br_input.c
parent8c9df4e47075b3667708f226ae06a4d8811f6aad (diff)
prevent bogus NETFILTER_DEBUG messages
Diffstat (limited to 'kernel/linux/net/bridge/br_input.c')
-rw-r--r--kernel/linux/net/bridge/br_input.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/kernel/linux/net/bridge/br_input.c b/kernel/linux/net/bridge/br_input.c
index 0f9a51d..501975b 100644
--- a/kernel/linux/net/bridge/br_input.c
+++ b/kernel/linux/net/bridge/br_input.c
@@ -5,7 +5,7 @@
* Authors:
* Lennert Buytenhek <buytenh@gnu.org>
*
- * $Id: br_input.c,v 1.4 2002/08/29 21:27:53 bdschuym Exp $
+ * $Id: br_input.c,v 1.5 2002/09/10 17:33:26 bdschuym Exp $
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@@ -28,6 +28,9 @@ unsigned char bridge_ula[6] = { 0x01, 0x80, 0xc2, 0x00, 0x00, 0x00 };
static int br_pass_frame_up_finish(struct sk_buff *skb)
{
+#ifdef CONFIG_NETFILTER_DEBUG
+ skb->nf_debug = 0;
+#endif
netif_rx(skb);
return 0;