|
@@ -173,9 +173,9 @@ static int p2p_manager_disconnect(struct hostapd_data *hapd, u16 stype,
|
|
|
if (mgmt == NULL)
|
|
|
return -1;
|
|
|
|
|
|
- wpa_printf(MSG_DEBUG, "P2P: Disconnect STA " MACSTR " with minor "
|
|
|
- "reason code %u (stype=%u)",
|
|
|
- MAC2STR(addr), minor_reason_code, stype);
|
|
|
+ wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "P2P: Disconnect STA " MACSTR
|
|
|
+ " with minor reason code %u (stype=%u)",
|
|
|
+ MAC2STR(addr), minor_reason_code, stype);
|
|
|
|
|
|
mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT, stype);
|
|
|
os_memcpy(mgmt->da, addr, ETH_ALEN);
|
|
@@ -218,7 +218,8 @@ static int hostapd_ctrl_iface_deauthenticate(struct hostapd_data *hapd,
|
|
|
struct sta_info *sta;
|
|
|
const char *pos;
|
|
|
|
|
|
- wpa_printf(MSG_DEBUG, "CTRL_IFACE DEAUTHENTICATE %s", txtaddr);
|
|
|
+ wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "CTRL_IFACE DEAUTHENTICATE %s",
|
|
|
+ txtaddr);
|
|
|
|
|
|
if (hwaddr_aton(txtaddr, addr))
|
|
|
return -1;
|
|
@@ -274,7 +275,8 @@ static int hostapd_ctrl_iface_disassociate(struct hostapd_data *hapd,
|
|
|
struct sta_info *sta;
|
|
|
const char *pos;
|
|
|
|
|
|
- wpa_printf(MSG_DEBUG, "CTRL_IFACE DISASSOCIATE %s", txtaddr);
|
|
|
+ wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "CTRL_IFACE DISASSOCIATE %s",
|
|
|
+ txtaddr);
|
|
|
|
|
|
if (hwaddr_aton(txtaddr, addr))
|
|
|
return -1;
|