diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2010-10-18 11:13:30 +0200 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2010-10-18 11:13:30 +0200 |
commit | 76b6717bc6ccb715b04e36efc26566a6313ede5f (patch) | |
tree | eecbb09c5775cd3f092cc91e5f15c251c25d3b82 /net/ipv6 | |
parent | a91fd267e327ca7599654b4e9ed7b62c5adaccee (diff) | |
download | linux-exynos-76b6717bc6ccb715b04e36efc26566a6313ede5f.tar.gz linux-exynos-76b6717bc6ccb715b04e36efc26566a6313ede5f.tar.bz2 linux-exynos-76b6717bc6ccb715b04e36efc26566a6313ede5f.zip |
netfilter: fix kconfig unmet dependency warning
Fix netfilter kconfig unmet dependencies warning & spell out
"compatible" while there.
warning: (IP_NF_TARGET_TTL && NET && INET && NETFILTER && IP_NF_IPTABLES && NETFILTER_ADVANCED || IP6_NF_TARGET_HL && NET && INET && IPV6 && NETFILTER && IP6_NF_IPTABLES && NETFILTER_ADVANCED) selects NETFILTER_XT_TARGET_HL which has unmet direct dependencies ((IP_NF_MANGLE || IP6_NF_MANGLE) && NETFILTER_ADVANCED)
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/netfilter/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/netfilter/Kconfig b/net/ipv6/netfilter/Kconfig index 29d643bcafa4..44d2eeac089b 100644 --- a/net/ipv6/netfilter/Kconfig +++ b/net/ipv6/netfilter/Kconfig @@ -132,10 +132,10 @@ config IP6_NF_MATCH_RT # The targets config IP6_NF_TARGET_HL tristate '"HL" hoplimit target support' - depends on NETFILTER_ADVANCED + depends on NETFILTER_ADVANCED && IP6_NF_MANGLE select NETFILTER_XT_TARGET_HL ---help--- - This is a backwards-compat option for the user's convenience + This is a backwards-compatible option for the user's convenience (e.g. when running oldconfig). It selects CONFIG_NETFILTER_XT_TARGET_HL. |