summaryrefslogtreecommitdiffstats
path: root/examples/nft-flowtable-add.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/nft-flowtable-add.c')
-rw-r--r--examples/nft-flowtable-add.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/nft-flowtable-add.c b/examples/nft-flowtable-add.c
index 8363027..f42d206 100644
--- a/examples/nft-flowtable-add.c
+++ b/examples/nft-flowtable-add.c
@@ -27,13 +27,13 @@ static struct nftnl_flowtable *flowtable_add_parse(int argc, char *argv[])
perror("OOM");
return NULL;
}
- nftnl_flowtable_set(t, NFTNL_FLOWTABLE_TABLE, argv[2]);
- nftnl_flowtable_set(t, NFTNL_FLOWTABLE_NAME, argv[3]);
+ nftnl_flowtable_set_str(t, NFTNL_FLOWTABLE_TABLE, argv[2]);
+ nftnl_flowtable_set_str(t, NFTNL_FLOWTABLE_NAME, argv[3]);
if (argc == 6) {
nftnl_flowtable_set_u32(t, NFTNL_FLOWTABLE_HOOKNUM, hooknum);
nftnl_flowtable_set_u32(t, NFTNL_FLOWTABLE_PRIO, atoi(argv[5]));
}
- nftnl_flowtable_set(t, NFTNL_FLOWTABLE_DEVICES, dev_array);
+ nftnl_flowtable_set_data(t, NFTNL_FLOWTABLE_DEVICES, dev_array, 0);
return t;
}