diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2010-05-14 16:52:30 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-05-14 16:52:30 -0400 |
commit | 83827f6a891e20de7468b1181f2ae8a3cc72587b (patch) | |
tree | 63f17ed9a4ac9864a8827f9d2a44cdb3e826c9f7 /net/netfilter | |
parent | 6df900e96c70208a931968da99f24cc982de116e (diff) |
netfilter: xt_TEE depends on NF_CONNTRACK
Fix xt_TEE build for the case of NF_CONNTRACK=m and
NETFILTER_XT_TARGET_TEE=y:
xt_TEE.c:(.text+0x6df5c): undefined reference to `nf_conntrack_untracked'
4x
Built with all 4 m/y combinations.
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Acked-by: Patrick McHardy <kaber@trash.net>
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 e223f47b8ba..8593a77cfea 100644 --- a/net/netfilter/Kconfig +++ b/net/netfilter/Kconfig | |||
@@ -506,6 +506,7 @@ 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 | depends on (IPV6 || IPV6=n) |
509 | depends on !NF_CONNTRACK || NF_CONNTRACK | ||
509 | ---help--- | 510 | ---help--- |
510 | This option adds a "TEE" target with which a packet can be cloned and | 511 | This option adds a "TEE" target with which a packet can be cloned and |
511 | this clone be rerouted to another nexthop. | 512 | this clone be rerouted to another nexthop. |