aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2008-10-08 05:35:17 -0400
committerPatrick McHardy <kaber@trash.net>2008-10-08 05:35:17 -0400
commit2203eb47603b01b15a4b1d5b1c7886da96158e74 (patch)
tree12d4030d4bb2a885873b962cdb8a52f5b0db6d8b
parent77d7358995489bf354fb4f65f4528e47980ffb08 (diff)
netfilter: ip6tables: fix Kconfig entry dependency for ip6t_LOG
ip6t_LOG does certainly not depend on the filter table. (Also, move it so that menuconfig still displays it correctly.) Signed-off-by: Jan Engelhardt <jengelh@medozas.de> Signed-off-by: Patrick McHardy <kaber@trash.net>
-rw-r--r--net/ipv6/netfilter/Kconfig20
1 files changed, 10 insertions, 10 deletions
diff --git a/net/ipv6/netfilter/Kconfig b/net/ipv6/netfilter/Kconfig
index f24432462be8..fee881bd31ff 100644
--- a/net/ipv6/netfilter/Kconfig
+++ b/net/ipv6/netfilter/Kconfig
@@ -136,24 +136,24 @@ config IP6_NF_MATCH_EUI64
136 To compile it as a module, choose M here. If unsure, say N. 136 To compile it as a module, choose M here. If unsure, say N.
137 137
138# The targets 138# The targets
139config IP6_NF_FILTER 139config IP6_NF_TARGET_LOG
140 tristate "Packet filtering" 140 tristate "LOG target support"
141 depends on IP6_NF_IPTABLES 141 depends on IP6_NF_IPTABLES
142 default m if NETFILTER_ADVANCED=n 142 default m if NETFILTER_ADVANCED=n
143 help 143 help
144 Packet filtering defines a table `filter', which has a series of 144 This option adds a `LOG' target, which allows you to create rules in
145 rules for simple packet filtering at local input, forwarding and 145 any iptables table which records the packet header to the syslog.
146 local output. See the man page for iptables(8).
147 146
148 To compile it as a module, choose M here. If unsure, say N. 147 To compile it as a module, choose M here. If unsure, say N.
149 148
150config IP6_NF_TARGET_LOG 149config IP6_NF_FILTER
151 tristate "LOG target support" 150 tristate "Packet filtering"
152 depends on IP6_NF_FILTER 151 depends on IP6_NF_IPTABLES
153 default m if NETFILTER_ADVANCED=n 152 default m if NETFILTER_ADVANCED=n
154 help 153 help
155 This option adds a `LOG' target, which allows you to create rules in 154 Packet filtering defines a table `filter', which has a series of
156 any iptables table which records the packet header to the syslog. 155 rules for simple packet filtering at local input, forwarding and
156 local output. See the man page for iptables(8).
157 157
158 To compile it as a module, choose M here. If unsure, say N. 158 To compile it as a module, choose M here. If unsure, say N.
159 159