|
@@ -92,7 +92,8 @@ static void hostapd_logger_cb(void *ctx, const u8 *addr, unsigned int module,
|
|
if (hapd && hapd->conf && addr)
|
|
if (hapd && hapd->conf && addr)
|
|
os_snprintf(format, maxlen, "%s: STA " MACSTR "%s%s: %s",
|
|
os_snprintf(format, maxlen, "%s: STA " MACSTR "%s%s: %s",
|
|
hapd->conf->iface, MAC2STR(addr),
|
|
hapd->conf->iface, MAC2STR(addr),
|
|
- module_str ? " " : "", module_str, txt);
|
|
|
|
|
|
+ module_str ? " " : "", module_str ? module_str : "",
|
|
|
|
+ txt);
|
|
else if (hapd && hapd->conf)
|
|
else if (hapd && hapd->conf)
|
|
os_snprintf(format, maxlen, "%s:%s%s %s",
|
|
os_snprintf(format, maxlen, "%s:%s%s %s",
|
|
hapd->conf->iface, module_str ? " " : "",
|
|
hapd->conf->iface, module_str ? " " : "",
|