Re: [PATCH][30/37] Clean up duplicate includes in net/netfilter/

2007-07-24 Thread Patrick McHardy
Jesper Juhl wrote:
 This patch cleans up duplicate includes in
   net/netfilter/


I've queued this one and the bridge-netfilter patch (27/37), thanks
Jesper.
-
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH][30/37] Clean up duplicate includes in net/netfilter/

2007-07-24 Thread Jesper Juhl

On 24/07/07, Patrick McHardy [EMAIL PROTECTED] wrote:

Jesper Juhl wrote:
 This patch cleans up duplicate includes in
   net/netfilter/


I've queued this one and the bridge-netfilter patch (27/37), thanks
Jesper.


Thanks for the feedback Patrick.

--
Jesper Juhl [EMAIL PROTECTED]
Don't top-post  http://www.catb.org/~esr/jargon/html/T/top-post.html
Plain text mails only, please  http://www.expita.com/nomime.html
-
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH][30/37] Clean up duplicate includes in net/netfilter/

2007-07-21 Thread Jesper Juhl
Hi,

This patch cleans up duplicate includes in
net/netfilter/


Signed-off-by: Jesper Juhl [EMAIL PROTECTED]
---

diff --git a/net/netfilter/nf_conntrack_proto_tcp.c 
b/net/netfilter/nf_conntrack_proto_tcp.c
index 87ad3cc..eb3fe74 100644
--- a/net/netfilter/nf_conntrack_proto_tcp.c
+++ b/net/netfilter/nf_conntrack_proto_tcp.c
@@ -8,7 +8,6 @@
 
 #include linux/types.h
 #include linux/timer.h
-#include linux/netfilter.h
 #include linux/module.h
 #include linux/in.h
 #include linux/tcp.h
diff --git a/net/netfilter/nf_conntrack_proto_udp.c 
b/net/netfilter/nf_conntrack_proto_udp.c
index 13d94a0..2a2fd1a 100644
--- a/net/netfilter/nf_conntrack_proto_udp.c
+++ b/net/netfilter/nf_conntrack_proto_udp.c
@@ -9,7 +9,6 @@
 #include linux/types.h
 #include linux/timer.h
 #include linux/module.h
-#include linux/netfilter.h
 #include linux/udp.h
 #include linux/seq_file.h
 #include linux/skbuff.h
diff --git a/net/netfilter/nf_conntrack_proto_udplite.c 
b/net/netfilter/nf_conntrack_proto_udplite.c
index 93e747b..b906b41 100644
--- a/net/netfilter/nf_conntrack_proto_udplite.c
+++ b/net/netfilter/nf_conntrack_proto_udplite.c
@@ -10,7 +10,6 @@
 #include linux/types.h
 #include linux/timer.h
 #include linux/module.h
-#include linux/netfilter.h
 #include linux/udp.h
 #include linux/seq_file.h
 #include linux/skbuff.h
diff --git a/net/netfilter/xt_physdev.c b/net/netfilter/xt_physdev.c
index f47cab7..a4bab04 100644
--- a/net/netfilter/xt_physdev.c
+++ b/net/netfilter/xt_physdev.c
@@ -13,7 +13,6 @@
 #include linux/netfilter_bridge.h
 #include linux/netfilter/xt_physdev.h
 #include linux/netfilter/x_tables.h
-#include linux/netfilter_bridge.h
 
 MODULE_LICENSE(GPL);
 MODULE_AUTHOR(Bart De Schuymer [EMAIL PROTECTED]);
-
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html