]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
nl80211: Add a missing space to a debug message
authorJouni Malinen <j@w1.fi>
Wed, 6 Jan 2016 11:20:31 +0000 (13:20 +0200)
committerJouni Malinen <j@w1.fi>
Wed, 6 Jan 2016 11:20:31 +0000 (13:20 +0200)
The "nl80211: New peer candidate" debug message did not have a space
before the MAC address.

Signed-off-by: Jouni Malinen <j@w1.fi>
src/drivers/driver_nl80211_event.c

index 4d7ac47d2cb445b3622e98232daa68cdb48832bd..d5b5a87f4227fbbaea5c008e8989ed0db887fe8c 100644 (file)
@@ -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));