mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-28 18:28:23 -05:00
Fix error messages to print ASCII MAC address, not the parse buffer
This commit is contained in:
parent
0f857f43df
commit
a7b6c42232
@ -119,7 +119,7 @@ static int wpa_supplicant_ctrl_iface_stkstart(
|
||||
|
||||
if (hwaddr_aton(addr, peer)) {
|
||||
wpa_printf(MSG_DEBUG, "CTRL_IFACE STKSTART: invalid "
|
||||
"address '%s'", peer);
|
||||
"address '%s'", addr);
|
||||
return -1;
|
||||
}
|
||||
|
||||
@ -141,7 +141,7 @@ static int wpa_supplicant_ctrl_iface_ft_ds(
|
||||
|
||||
if (hwaddr_aton(addr, target_ap)) {
|
||||
wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS: invalid "
|
||||
"address '%s'", target_ap);
|
||||
"address '%s'", addr);
|
||||
return -1;
|
||||
}
|
||||
|
||||
@ -343,7 +343,7 @@ static int wpa_supplicant_ctrl_iface_ibss_rsn(
|
||||
|
||||
if (hwaddr_aton(addr, peer)) {
|
||||
wpa_printf(MSG_DEBUG, "CTRL_IFACE IBSS_RSN: invalid "
|
||||
"address '%s'", peer);
|
||||
"address '%s'", addr);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user