diff options
author | Naresh Kamboju <naresh.kamboju@linaro.org> | 2019-01-29 06:28:35 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-03-13 14:03:21 -0700 |
commit | 25825f52ba4138e09dfbeaaa104f363b8256e5cf (patch) | |
tree | b9e1e84678a1accd53da6f2da6506e7da29b2ac0 /tools/testing | |
parent | f2dbb2b5d97143761de075856596ec8e704fe02d (diff) | |
download | linux-stable-25825f52ba4138e09dfbeaaa104f363b8256e5cf.tar.gz linux-stable-25825f52ba4138e09dfbeaaa104f363b8256e5cf.tar.bz2 linux-stable-25825f52ba4138e09dfbeaaa104f363b8256e5cf.zip |
selftests: netfilter: fix config fragment CONFIG_NF_TABLES_INET
[ Upstream commit 952b72f89ae23b316da8c1021b18d0c388ad6cc4 ]
In selftests the config fragment for netfilter was added as
NF_TABLES_INET=y and this patch correct it as CONFIG_NF_TABLES_INET=y
Signed-off-by: Naresh Kamboju <naresh.kamboju@linaro.org>
Acked-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'tools/testing')
-rw-r--r-- | tools/testing/selftests/netfilter/config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/netfilter/config b/tools/testing/selftests/netfilter/config index 1017313e41a8..59caa8f71cd8 100644 --- a/tools/testing/selftests/netfilter/config +++ b/tools/testing/selftests/netfilter/config @@ -1,2 +1,2 @@ CONFIG_NET_NS=y -NF_TABLES_INET=y +CONFIG_NF_TABLES_INET=y |