From: Jouni Malinen Date: Thu, 7 Sep 2017 10:33:40 +0000 (+0300) Subject: FILS: Add a space before MAC address to a HLP debug message X-Git-Tag: hostap_2_7~1136 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=49e6a55537269e26a0ebd4f7536dbd54734e91fa;p=thirdparty%2Fhostap.git FILS: Add a space before MAC address to a HLP debug message The "FILS: No pending HLP DHCP exchange with hw_addr" debug message was missing a space before the following MAC address, so add that there to make the message more readable. Signed-off-by: Jouni Malinen --- diff --git a/src/ap/fils_hlp.c b/src/ap/fils_hlp.c index 2370a8bbd..2a359ab03 100644 --- a/src/ap/fils_hlp.c +++ b/src/ap/fils_hlp.c @@ -232,7 +232,7 @@ static void fils_dhcp_handler(int sd, void *eloop_ctx, void *sock_ctx) sta = ap_get_sta(hapd, dhcp->hw_addr); if (!sta || !sta->fils_pending_assoc_req) { wpa_printf(MSG_DEBUG, - "FILS: No pending HLP DHCP exchange with hw_addr" + "FILS: No pending HLP DHCP exchange with hw_addr " MACSTR, MAC2STR(dhcp->hw_addr)); return; }