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/genl-family-get.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'examples/genl-family-get.c') diff --git a/examples/genl-family-get.c b/examples/genl-family-get.c index c8352ab..ddbb557 100644 --- a/examples/genl-family-get.c +++ b/examples/genl-family-get.c @@ -10,8 +10,8 @@ static int parse_mc_grps_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, CTRL_ATTR_MCAST_GRP_MAX) < 0) { - perror("mnl_attr_type_ok"); + if (mnl_attr_type_valid(attr, CTRL_ATTR_MCAST_GRP_MAX) < 0) { + perror("mnl_attr_type_valid"); return MNL_CB_ERROR; } @@ -59,8 +59,8 @@ static int parse_family_ops_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, CTRL_ATTR_OP_MAX) < 0) { - perror("mnl_attr_type_ok"); + if (mnl_attr_type_valid(attr, CTRL_ATTR_OP_MAX) < 0) { + perror("mnl_attr_type_valid"); return MNL_CB_ERROR; } @@ -105,8 +105,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, CTRL_ATTR_MAX) < 0) { - perror("mnl_attr_type_ok"); + if (mnl_attr_type_valid(attr, CTRL_ATTR_MAX) < 0) { + perror("mnl_attr_type_valid"); return MNL_CB_ERROR; } -- cgit v1.2.3