Fixed minor typo just to see if I have git process working correctly

This commit is contained in:
Ian Clowes 2020-05-20 19:28:24 +01:00
parent 73c7998967
commit 92561cbe9d

View file

@ -98,7 +98,7 @@ void send_beacon_reports(uint8_t bssid[], int id) {
} }
} }
// Go threw clients // Go through clients
int j; int j;
for (j = i; j <= client_entry_last; j++) { for (j = i; j <= client_entry_last; j++) {
if (!mac_is_equal(client_array[j].bssid_addr, bssid)) { if (!mac_is_equal(client_array[j].bssid_addr, bssid)) {
@ -477,7 +477,7 @@ void kick_clients(uint8_t bssid[], uint32_t id) {
} }
} }
// Go threw clients // Go through clients
int j; int j;
for (j = i; j <= client_entry_last; j++) { for (j = i; j <= client_entry_last; j++) {
if (!mac_is_equal(client_array[j].bssid_addr, bssid)) { if (!mac_is_equal(client_array[j].bssid_addr, bssid)) {