netfilter: nf_tables: fix missing byteorder conversion in policy
When fetching the policy attribute, the byteorder conversion was missing, breaking the chain policy setting. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
Родитель
11b57f9025
Коммит
8f46df184c
|
@ -859,7 +859,7 @@ static int nf_tables_newchain(struct sock *nlsk, struct sk_buff *skb,
|
|||
nla[NFTA_CHAIN_HOOK] == NULL)
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
policy = nla_get_be32(nla[NFTA_CHAIN_POLICY]);
|
||||
policy = ntohl(nla_get_be32(nla[NFTA_CHAIN_POLICY]));
|
||||
switch (policy) {
|
||||
case NF_DROP:
|
||||
case NF_ACCEPT:
|
||||
|
|
Загрузка…
Ссылка в новой задаче