diff options
author | Bart De Schuymer <bdschuym@pandora.be> | 2011-07-29 16:40:30 +0200 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2011-07-29 16:40:30 +0200 |
commit | 9823d9ff483af4ce8804a9eb69600ca739cd1f58 (patch) | |
tree | 15da201362c5f5a748442a73f5569d709f66d75a | |
parent | 91c66c6893a3e2bb8a88a30cb76007d5d49d32c9 (diff) | |
download | op-kernel-dev-9823d9ff483af4ce8804a9eb69600ca739cd1f58.zip op-kernel-dev-9823d9ff483af4ce8804a9eb69600ca739cd1f58.tar.gz |
netfilter: ebtables: fix ebtables build dependency
The configuration of ebtables shouldn't depend on
CONFIG_BRIDGE_NETFILTER, only on CONFIG_NETFILTER.
Reported-by: Sébastien Laveze <slaveze@gmail.com>
Signed-off-by: Bart De Schuymer <bdschuym@pandora.be>
Signed-off-by: Patrick McHardy <kaber@trash.net>
-rw-r--r-- | net/bridge/netfilter/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bridge/netfilter/Kconfig b/net/bridge/netfilter/Kconfig index ba6f73e..a9aff9c 100644 --- a/net/bridge/netfilter/Kconfig +++ b/net/bridge/netfilter/Kconfig @@ -4,7 +4,7 @@ menuconfig BRIDGE_NF_EBTABLES tristate "Ethernet Bridge tables (ebtables) support" - depends on BRIDGE && BRIDGE_NETFILTER + depends on BRIDGE && NETFILTER select NETFILTER_XTABLES help ebtables is a general, extensible frame/packet identification |