diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-02-02 19:33:52 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-02-02 19:33:52 -0800 |
commit | 3e8219806c33b64a00b0013f96f735451f30c64c (patch) | |
tree | e0e802f56c9432e11642e47696aeb7fa9e620179 | |
parent | 40e0cb004a6d4a7ad577724e451e8dbd6cba5a89 (diff) | |
download | linux-3.10-3e8219806c33b64a00b0013f96f735451f30c64c.tar.gz linux-3.10-3e8219806c33b64a00b0013f96f735451f30c64c.tar.bz2 linux-3.10-3e8219806c33b64a00b0013f96f735451f30c64c.zip |
[NETFILTER]: nf_conntrack_h323: fix compile error with CONFIG_IPV6=m, CONFIG_NF_CONNTRACK_H323=y
Fix this by letting NF_CONNTRACK_H323 depend on (IPV6 || IPV6=n).
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: David S. Miller <davem@davemloft.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 2a2bcb303bf..80107d4909c 100644 --- a/net/netfilter/Kconfig +++ b/net/netfilter/Kconfig @@ -165,7 +165,7 @@ config NF_CONNTRACK_FTP config NF_CONNTRACK_H323 tristate "H.323 protocol support (EXPERIMENTAL)" - depends on EXPERIMENTAL && NF_CONNTRACK + depends on EXPERIMENTAL && NF_CONNTRACK && (IPV6 || IPV6=n) help H.323 is a VoIP signalling protocol from ITU-T. As one of the most important VoIP protocols, it is widely used by voice hardware and |