Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

netfilter: nf_tables: incorrect enum nft_list_attributes definition

This should be NFTA_LIST_UNSPEC instead of NFTA_LIST_UNPEC, all other
similar attribute definitions are postfixed with _UNSPEC.

Fixes: 96518518cc41 ("netfilter: add nftables")
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>

+1 -1
+1 -1
include/uapi/linux/netfilter/nf_tables.h
··· 133 133 * @NFTA_LIST_ELEM: list element (NLA_NESTED) 134 134 */ 135 135 enum nft_list_attributes { 136 - NFTA_LIST_UNPEC, 136 + NFTA_LIST_UNSPEC, 137 137 NFTA_LIST_ELEM, 138 138 __NFTA_LIST_MAX 139 139 };