mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-29 02:38:22 -05:00
Fix hostapd_wpa_auth_send_ether() return value
This was not currently used for anything, but better return the correct value instead of hardcoded -1.
This commit is contained in:
parent
b832d34c48
commit
2683690d91
@ -384,7 +384,7 @@ static int hostapd_wpa_auth_send_ether(void *ctx, const u8 *dst, u16 proto,
|
|||||||
ret = l2_packet_send(hapd->l2, dst, proto, (u8 *) buf,
|
ret = l2_packet_send(hapd->l2, dst, proto, (u8 *) buf,
|
||||||
sizeof(*buf) + data_len);
|
sizeof(*buf) + data_len);
|
||||||
os_free(buf);
|
os_free(buf);
|
||||||
return -1;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user