summaryrefslogtreecommitdiffstats
path: root/examples/nft-obj-get.c
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2019-12-04 15:45:43 +0100
committerPhil Sutter <phil@nwl.cc>2019-12-04 23:33:23 +0100
commitdfe3828f77b52a2d46b5f40e2c125b60e99cbaec (patch)
tree095ee74272f2132211f921ee0f40831a9444c879 /examples/nft-obj-get.c
parentd95a703746d5394d56a9f464e343594e4882da0d (diff)
examples: Replace use of deprecated symbols
Do not use unqualified setters to avoid the warnings. Pass a (false) zero length value to nftnl_flowtable_set_data() when assigning to NFTNL_FLOWTABLE_DEVICES as the length value is unused and not even usable. Maybe one should introduce a dedicated nftnl_flowtable_set_devices() at a later point. Fixes: 7349a70634fa0 ("Deprecate untyped data setters") Signed-off-by: Phil Sutter <phil@nwl.cc> Acked-by: Pablo Neira Ayuso <pablo@netfilter.org> Acked-by: Arturo Borrero Gonzalez <arturo@netfilter.org>
Diffstat (limited to 'examples/nft-obj-get.c')
-rw-r--r--examples/nft-obj-get.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/nft-obj-get.c b/examples/nft-obj-get.c
index e6a19fe..87be3b4 100644
--- a/examples/nft-obj-get.c
+++ b/examples/nft-obj-get.c
@@ -89,13 +89,13 @@ int main(int argc, char *argv[])
nlh = nftnl_nlmsg_build_hdr(buf, NFT_MSG_GETOBJ, family,
NLM_F_DUMP, seq);
if (argc == 3) {
- nftnl_obj_set(t, NFTNL_OBJ_TABLE, argv[2]);
+ nftnl_obj_set_str(t, NFTNL_OBJ_TABLE, argv[2]);
nftnl_obj_nlmsg_build_payload(nlh, t);
nftnl_obj_free(t);
}
} else {
- nftnl_obj_set(t, NFTNL_OBJ_TABLE, argv[2]);
- nftnl_obj_set(t, NFTNL_OBJ_NAME, argv[3]);
+ nftnl_obj_set_str(t, NFTNL_OBJ_TABLE, argv[2]);
+ nftnl_obj_set_str(t, NFTNL_OBJ_NAME, argv[3]);
nftnl_obj_set_u32(t, NFTNL_OBJ_TYPE, NFT_OBJECT_COUNTER);
nlh = nftnl_nlmsg_build_hdr(buf, NFT_MSG_GETOBJ, family,