summaryrefslogtreecommitdiffstats
path: root/examples/nft-rule-get.c
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2022-11-15 11:12:03 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2022-11-15 11:48:18 +0100
commit7d9b9a5ca4fe744dfa76d146d2003c26f5a42034 (patch)
tree313fa8ae1bc6635cfd130937806d2d1d12fb5aba /examples/nft-rule-get.c
parenta29ac103e9811909342c0ff2da5c185adb1cde82 (diff)
src: replace nftnl_*_nlmsg_build_hdr() by nftnl_nlmsg_build_hdr()
Use nftnl_nlmsg_build_hdr() instead of nftnl_*_nlmsg_build_hdr(). Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'examples/nft-rule-get.c')
-rw-r--r--examples/nft-rule-get.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/nft-rule-get.c b/examples/nft-rule-get.c
index 8fb654f..8da5b59 100644
--- a/examples/nft-rule-get.c
+++ b/examples/nft-rule-get.c
@@ -111,8 +111,8 @@ int main(int argc, char *argv[])
}
seq = time(NULL);
- nlh = nftnl_rule_nlmsg_build_hdr(buf, NFT_MSG_GETRULE, family,
- NLM_F_DUMP, seq);
+ nlh = nftnl_nlmsg_build_hdr(buf, NFT_MSG_GETRULE, family,
+ NLM_F_DUMP, seq);
r = setup_rule(family, table, chain, NULL);
if (!r) {