summaryrefslogtreecommitdiffstats
path: root/examples/nft-flowtable-del.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/nft-flowtable-del.c')
-rw-r--r--examples/nft-flowtable-del.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/nft-flowtable-del.c b/examples/nft-flowtable-del.c
index b25f041..4866ea2 100644
--- a/examples/nft-flowtable-del.c
+++ b/examples/nft-flowtable-del.c
@@ -19,8 +19,8 @@ static struct nftnl_flowtable *flowtable_del_parse(int argc, char *argv[])
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]);
return t;
}