From 3ece3d60f41b65470ec5ce6c9a0b830e32a84422 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Mon, 5 Apr 2010 18:06:04 +0200 Subject: rename mnl_attr_type_ok() by mnl_attr_type_valid() for consistency better to rename this function since its return value is not similar to other _ok() functions, for consistency. Signed-off-by: Pablo Neira Ayuso --- examples/rtnl-link-dump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/rtnl-link-dump.c') diff --git a/examples/rtnl-link-dump.c b/examples/rtnl-link-dump.c index b0c8e76..c9d06b0 100644 --- a/examples/rtnl-link-dump.c +++ b/examples/rtnl-link-dump.c @@ -12,8 +12,8 @@ static int data_attr_cb(const struct nlattr *attr, void *data) const struct nlattr **tb = (const struct nlattr **)data; int type = mnl_attr_get_type(attr); - if (mnl_attr_type_ok(attr, IFLA_MAX) < 0) { - perror("mnl_attr_type_ok"); + if (mnl_attr_type_valid(attr, IFLA_MAX) < 0) { + perror("mnl_attr_type_valid"); return MNL_CB_ERROR; } -- cgit v1.2.3