summaryrefslogtreecommitdiffstats
path: root/kernel/linux2.5
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/linux2.5
parent8c9df4e47075b3667708f226ae06a4d8811f6aad (diff)
prevent bogus NETFILTER_DEBUG messages
Diffstat (limited to 'kernel/linux2.5')
-rw-r--r--kernel/linux2.5/net/bridge/br_input.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/kernel/linux2.5/net/bridge/br_input.c b/kernel/linux2.5/net/bridge/br_input.c
index 08c897c..1cbd914 100644
--- a/kernel/linux2.5/net/bridge/br_input.c
+++ b/kernel/linux2.5/net/bridge/br_input.c
@@ -5,7 +5,7 @@
* Authors:
* Lennert Buytenhek <buytenh@gnu.org>
*
- * $Id: br_input.c,v 1.1 2002/08/23 20:02:39 bdschuym Exp $
+ * $Id: br_input.c,v 1.2 2002/09/10 17:34:09 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;