mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-04 04:06:26 +00:00
netfilter: nft_redir: correct value of inet type .maxattrs
`nft_redir_inet_type.maxattrs` was being set, presumably because of a
cut-and-paste error, to `NFTA_MASQ_MAX`, instead of `NFTA_REDIR_MAX`.
Fixes: 63ce3940f3
("netfilter: nft_redir: add inet support")
Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
Reviewed-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
parent
1f617b6b4c
commit
493924519b
@ -236,7 +236,7 @@ static struct nft_expr_type nft_redir_inet_type __read_mostly = {
|
||||
.name = "redir",
|
||||
.ops = &nft_redir_inet_ops,
|
||||
.policy = nft_redir_policy,
|
||||
.maxattr = NFTA_MASQ_MAX,
|
||||
.maxattr = NFTA_REDIR_MAX,
|
||||
.owner = THIS_MODULE,
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user