From: Jouni Malinen Date: Wed, 6 Jan 2016 11:20:31 +0000 (+0200) Subject: nl80211: Add a missing space to a debug message X-Git-Tag: hostap_2_6~1035 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7d41907bd9f9521baeae1ed2e6afc70d595fe465;p=thirdparty%2Fhostap.git nl80211: Add a missing space to a debug message The "nl80211: New peer candidate" debug message did not have a space before the MAC address. Signed-off-by: Jouni Malinen --- diff --git a/src/drivers/driver_nl80211_event.c b/src/drivers/driver_nl80211_event.c index 4d7ac47d2..d5b5a87f4 100644 --- a/src/drivers/driver_nl80211_event.c +++ b/src/drivers/driver_nl80211_event.c @@ -1136,7 +1136,7 @@ static void nl80211_new_peer_candidate(struct wpa_driver_nl80211_data *drv, return; addr = nla_data(tb[NL80211_ATTR_MAC]); - wpa_printf(MSG_DEBUG, "nl80211: New peer candidate" MACSTR, + wpa_printf(MSG_DEBUG, "nl80211: New peer candidate " MACSTR, MAC2STR(addr)); os_memset(&data, 0, sizeof(data));