diff options
author | Florian Westphal <fw@strlen.de> | 2019-05-12 20:42:37 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-01-27 14:50:48 +0100 |
commit | 1f791d99e8d6ff04f1e55b278c11ba7c049c155f (patch) | |
tree | 9ff459f3a748b46aab32e9f1f147e9514a813c63 /include | |
parent | 9245e019e53c29b4af8efd7536c5366fc1f0e7a5 (diff) | |
download | linux-stable-1f791d99e8d6ff04f1e55b278c11ba7c049c155f.tar.gz linux-stable-1f791d99e8d6ff04f1e55b278c11ba7c049c155f.tar.bz2 linux-stable-1f791d99e8d6ff04f1e55b278c11ba7c049c155f.zip |
netfilter: nf_tables: correct NFT_LOGLEVEL_MAX value
[ Upstream commit 92285a079eedfe104a773a7c4293f77a01f456fb ]
should be same as NFT_LOGLEVEL_AUDIT, so use -, not +.
Fixes: 7eced5ab5a73 ("netfilter: nf_tables: add NFT_LOGLEVEL_* enumeration and use it")
Signed-off-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 'include')
-rw-r--r-- | include/uapi/linux/netfilter/nf_tables.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/linux/netfilter/nf_tables.h b/include/uapi/linux/netfilter/nf_tables.h index 325ec6ef0a76..5eac62e1b68d 100644 --- a/include/uapi/linux/netfilter/nf_tables.h +++ b/include/uapi/linux/netfilter/nf_tables.h @@ -1128,7 +1128,7 @@ enum nft_log_level { NFT_LOGLEVEL_AUDIT, __NFT_LOGLEVEL_MAX }; -#define NFT_LOGLEVEL_MAX (__NFT_LOGLEVEL_MAX + 1) +#define NFT_LOGLEVEL_MAX (__NFT_LOGLEVEL_MAX - 1) /** * enum nft_queue_attributes - nf_tables queue expression netlink attributes |