diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2015-09-07 18:02:50 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2015-09-07 20:01:05 +0200 |
commit | 0e7b6c4983af4ddd3a50c3ce756638af157c7130 (patch) | |
tree | 2a2a0245283905a7540a292c5181926e6070ad4a /examples/nft-chain-del.c | |
parent | d549a220dc3cd3294f4b16a5c04c9df298835486 (diff) |
src: get rid of _ATTR_ infix in new nfntl_ definitions
The constant names are already large, trim off the _ATTR_ infix in the
attribute definitions.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'examples/nft-chain-del.c')
-rw-r--r-- | examples/nft-chain-del.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/nft-chain-del.c b/examples/nft-chain-del.c index 0b04daa..29953d7 100644 --- a/examples/nft-chain-del.c +++ b/examples/nft-chain-del.c @@ -30,8 +30,8 @@ static struct nftnl_chain *chain_del_parse(int argc, char *argv[]) return NULL; } - nftnl_chain_attr_set(t, NFTNL_CHAIN_ATTR_TABLE, argv[2]); - nftnl_chain_attr_set(t, NFTNL_CHAIN_ATTR_NAME, argv[3]); + nftnl_chain_attr_set(t, NFTNL_CHAIN_TABLE, argv[2]); + nftnl_chain_attr_set(t, NFTNL_CHAIN_NAME, argv[3]); return t; } |