diff options
author | Patrick McHardy <kaber@trash.net> | 2006-10-02 19:10:47 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-10-04 03:30:53 -0400 |
commit | f1da70632fa0875f80fc60991a010c31f40983ff (patch) | |
tree | 3a6dda89ce1a62d0830bd820bbed00551e5c47e8 /net | |
parent | 78b656b8bf933101b42409b4492734b23427bfc3 (diff) |
[NETFILTER]: Kconfig: fix xt_physdev dependencies
xt_physdev depends on bridge netfilter, which is a boolean, but can still
be built modular because of special handling in the bridge makefile. Add
a dependency on BRIDGE to prevent XT_MATCH_PHYSDEV=y, BRIDGE=m.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/netfilter/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/Kconfig b/net/netfilter/Kconfig index 0a28d2c5c44f..ce94732b8e23 100644 --- a/net/netfilter/Kconfig +++ b/net/netfilter/Kconfig | |||
@@ -365,7 +365,7 @@ config NETFILTER_XT_MATCH_MULTIPORT | |||
365 | 365 | ||
366 | config NETFILTER_XT_MATCH_PHYSDEV | 366 | config NETFILTER_XT_MATCH_PHYSDEV |
367 | tristate '"physdev" match support' | 367 | tristate '"physdev" match support' |
368 | depends on NETFILTER_XTABLES && BRIDGE_NETFILTER | 368 | depends on NETFILTER_XTABLES && BRIDGE && BRIDGE_NETFILTER |
369 | help | 369 | help |
370 | Physdev packet matching matches against the physical bridge ports | 370 | Physdev packet matching matches against the physical bridge ports |
371 | the IP packet arrived on or will leave by. | 371 | the IP packet arrived on or will leave by. |