From 9e655106faecd9b796271affe1e8e63cad8eec57 Mon Sep 17 00:00:00 2001 From: Jukka Rissanen Date: Wed, 28 Jan 2015 16:17:12 +0200 Subject: [PATCH] wiphy: MLME warning message text incorrect MLME notify function prints error if wiphy or netdev is missing. The error text in this case talks about scan notification instead of more proper MLME notification. --- src/wiphy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wiphy.c b/src/wiphy.c index 22852648..66442aef 100644 --- a/src/wiphy.c +++ b/src/wiphy.c @@ -1148,12 +1148,12 @@ static void wiphy_mlme_notify(struct l_genl_msg *msg, void *user_data) } if (!wiphy) { - l_warn("Scan notification is missing wiphy attribute"); + l_warn("MLME notification is missing wiphy attribute"); return; } if (!netdev) { - l_warn("Scan notification is missing interface attribute"); + l_warn("MLME notification is missing interface attribute"); return; }