summaryrefslogtreecommitdiffstats
path: root/examples/rtnl-link-dump3.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/rtnl-link-dump3.c')
-rw-r--r--examples/rtnl-link-dump3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/rtnl-link-dump3.c b/examples/rtnl-link-dump3.c
index fac3b87..fc887ff 100644
--- a/examples/rtnl-link-dump3.c
+++ b/examples/rtnl-link-dump3.c
@@ -10,7 +10,7 @@
static int data_cb(const struct nlmsghdr *nlh, void *data)
{
struct ifinfomsg *ifm = mnl_nlmsg_get_payload(nlh);
- int len = mnl_nlmsg_get_len(nlh);
+ int len = nlh->nlmsg_len;
struct nlattr *attr;
printf("index=%d type=%d flags=%d family=%d ",
@@ -79,7 +79,7 @@ int main()
}
portid = mnl_socket_get_portid(nl);
- if (mnl_socket_sendto(nl, nlh, mnl_nlmsg_get_len(nlh)) < 0) {
+ if (mnl_socket_sendto(nl, nlh, nlh->nlmsg_len) < 0) {
perror("mnl_socket_send");
exit(EXIT_FAILURE);
}