summaryrefslogtreecommitdiffstats
path: root/examples/nft-set-add.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/nft-set-add.c')
-rw-r--r--examples/nft-set-add.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/nft-set-add.c b/examples/nft-set-add.c
index a29115c..e040aca 100644
--- a/examples/nft-set-add.c
+++ b/examples/nft-set-add.c
@@ -39,12 +39,12 @@ static struct nftnl_set *setup_set(uint8_t family, const char *table,
exit(EXIT_FAILURE);
}
- nftnl_set_attr_set_str(s, NFTNL_SET_TABLE, table);
- nftnl_set_attr_set_str(s, NFTNL_SET_NAME, name);
- nftnl_set_attr_set_u32(s, NFTNL_SET_FAMILY, family);
- nftnl_set_attr_set_u32(s, NFTNL_SET_KEY_LEN, 2);
- nftnl_set_attr_set_u32(s, NFTNL_SET_ID, 1);
- nftnl_set_attr_set_u32(s, NFTNL_SET_FLAGS, NFT_SET_CONSTANT);
+ nftnl_set_set_str(s, NFTNL_SET_TABLE, table);
+ nftnl_set_set_str(s, NFTNL_SET_NAME, name);
+ nftnl_set_set_u32(s, NFTNL_SET_FAMILY, family);
+ nftnl_set_set_u32(s, NFTNL_SET_KEY_LEN, 2);
+ nftnl_set_set_u32(s, NFTNL_SET_ID, 1);
+ nftnl_set_set_u32(s, NFTNL_SET_FLAGS, NFT_SET_CONSTANT);
return s;
}