Add address to hostapd_logger output in wpa_supplicant as AP case

This commit is contained in:
Jouni Malinen 2010-04-03 18:36:49 +02:00 committed by Jouni Malinen
parent 93368ca4a2
commit ade07077ec

View file

@ -390,6 +390,9 @@ void hostapd_logger(void *ctx, const u8 *addr, unsigned int module, int level,
va_end(ap);
if (hostapd_logger_cb)
hostapd_logger_cb(ctx, addr, module, level, buf, len);
else if (addr)
wpa_printf(MSG_DEBUG, "hostapd_logger: STA " MACSTR " - %s",
MAC2STR(addr), buf);
else
wpa_printf(MSG_DEBUG, "hostapd_logger: %s", buf);
os_free(buf);