diff options
author | Jan Engelhardt <jengelh@medozas.de> | 2010-05-12 06:11:35 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-05-12 17:54:15 -0400 |
commit | 9b7ce2b76265b3bf133aa1919e5022302981dff6 (patch) | |
tree | 77c0300d684811424f7cd06cf5ab00fcc2d50569 /net/netfilter | |
parent | 278554bd6579206921f5d8a523649a7a57f8850d (diff) |
netfilter: xtables: add missing depends for xt_TEE
Aviod these link-time errors when IPV6=m, XT_TEE=y:
net/built-in.o: In function `tee_tg_route6':
xt_TEE.c:(.text+0x45ca5): undefined reference to `ip6_route_output'
net/built-in.o: In function `tee_tg6':
xt_TEE.c:(.text+0x45d79): undefined reference to `ip6_local_out'
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Acked-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/netfilter')
-rw-r--r-- | net/netfilter/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/netfilter/Kconfig b/net/netfilter/Kconfig index 673a6c8f0e95..e223f47b8bae 100644 --- a/net/netfilter/Kconfig +++ b/net/netfilter/Kconfig | |||
@@ -505,6 +505,7 @@ config NETFILTER_XT_TARGET_RATEEST | |||
505 | config NETFILTER_XT_TARGET_TEE | 505 | config NETFILTER_XT_TARGET_TEE |
506 | tristate '"TEE" - packet cloning to alternate destiantion' | 506 | tristate '"TEE" - packet cloning to alternate destiantion' |
507 | depends on NETFILTER_ADVANCED | 507 | depends on NETFILTER_ADVANCED |
508 | depends on (IPV6 || IPV6=n) | ||
508 | ---help--- | 509 | ---help--- |
509 | This option adds a "TEE" target with which a packet can be cloned and | 510 | This option adds a "TEE" target with which a packet can be cloned and |
510 | this clone be rerouted to another nexthop. | 511 | this clone be rerouted to another nexthop. |