summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorInaky Perez-Gonzalez <inaky@linux.intel.com>2009-04-23 18:29:22 -0700
committerInaky Perez-Gonzalez <inaky@linux.intel.com>2009-04-24 15:44:00 -0700
commitbdb491e42ad7f85158ef44f2bf58f35b66e1f0a5 (patch)
tree0ad68787d6ebd88f1c438f31d9e7633e297a2c9c
parentf9442444d8e0688c2f9aa112729baa80245643db (diff)
libwimaxll: clarify the error printed when the kernel WiMAX generic netlink interface is not found
Signed-off-by: Inaky Perez-Gonzalez <inaky@linux.intel.com>
-rw-r--r--lib/op-open.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/op-open.c b/lib/op-open.c
index 9865858..776d2d5 100644
--- a/lib/op-open.c
+++ b/lib/op-open.c
@@ -282,10 +282,8 @@ int wimaxll_gnl_resolve(struct wimaxll_handle *wmx)
/* Lookup the generic netlink family */
result = genl_ctrl_resolve(wmx->nlh_tx, "WiMAX");
if (result < 0) {
- wimaxll_msg(wmx, "E: device %s presents no WiMAX interface; "
- "it might not exist, not be be a WiMAX device or "
- "support an interface unknown to libwimaxll: %d\n",
- wmx->name, result);
+ wimaxll_msg(wmx, "E: can't find kernel's WiMAX API "
+ "over genetic netlink: %d\n", result);
goto error_ctrl_resolve;
}
wmx->gnl_family_id = result;