Fix error messages to print ASCII MAC address, not the parse buffer
This commit is contained in:
parent
0f857f43df
commit
a7b6c42232
1 changed files with 3 additions and 3 deletions
|
@ -119,7 +119,7 @@ static int wpa_supplicant_ctrl_iface_stkstart(
|
||||||
|
|
||||||
if (hwaddr_aton(addr, peer)) {
|
if (hwaddr_aton(addr, peer)) {
|
||||||
wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART: invalid "
|
wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART: invalid "
|
||||||
"address '%s'", peer);
|
"address '%s'", addr);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -141,7 +141,7 @@ static int wpa_supplicant_ctrl_iface_ft_ds(
|
||||||
|
|
||||||
if (hwaddr_aton(addr, target_ap)) {
|
if (hwaddr_aton(addr, target_ap)) {
|
||||||
wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS: invalid "
|
wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS: invalid "
|
||||||
"address '%s'", target_ap);
|
"address '%s'", addr);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -343,7 +343,7 @@ static int wpa_supplicant_ctrl_iface_ibss_rsn(
|
||||||
|
|
||||||
if (hwaddr_aton(addr, peer)) {
|
if (hwaddr_aton(addr, peer)) {
|
||||||
wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN: invalid "
|
wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN: invalid "
|
||||||
"address '%s'", peer);
|
"address '%s'", addr);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue