diff options
author | Vegard Nossum <vegard.nossum@gmail.com> | 2021-10-05 22:54:54 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-10-27 09:32:40 +0200 |
commit | c9b51f295240c3e07cee429717ed4094c8eae431 (patch) | |
tree | bff3584b54e0ae914244233a705a60b0cbc4023c | |
parent | e8b8de17e164c9f1b7777f1c6f99d05539000036 (diff) | |
download | linux-stable-c9b51f295240c3e07cee429717ed4094c8eae431.tar.gz linux-stable-c9b51f295240c3e07cee429717ed4094c8eae431.tar.bz2 linux-stable-c9b51f295240c3e07cee429717ed4094c8eae431.zip |
netfilter: Kconfig: use 'default y' instead of 'm' for bool config option
commit 77076934afdcd46516caf18ed88b2f88025c9ddb upstream.
This option, NF_CONNTRACK_SECMARK, is a bool, so it can never be 'm'.
Fixes: 33b8e77605620 ("[NETFILTER]: Add CONFIG_NETFILTER_ADVANCED option")
Signed-off-by: Vegard Nossum <vegard.nossum@oracle.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-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 4692782b5280..c244711a0b91 100644 --- a/net/netfilter/Kconfig +++ b/net/netfilter/Kconfig @@ -71,7 +71,7 @@ config NF_CONNTRACK_MARK config NF_CONNTRACK_SECMARK bool 'Connection tracking security mark support' depends on NETWORK_SECMARK - default m if NETFILTER_ADVANCED=n + default y if NETFILTER_ADVANCED=n help This option enables security markings to be applied to connections. Typically they are copied to connections from |