mirror of
https://github.com/berlin-open-wireless-lab/DAWN.git
synced 2025-03-09 15:40:12 +00:00
fix max station count
This commit is contained in:
parent
b6cc6470af
commit
0a45183bb5
1 changed files with 1 additions and 1 deletions
|
@ -284,7 +284,7 @@ int compare_station_count(uint8_t *bssid_addr_own, uint8_t *bssid_addr_to_compar
|
|||
}
|
||||
printf("AFTER: Comparing own %d to %d\n", sta_count, sta_count_to_compare);
|
||||
|
||||
return sta_count - sta_count_to_compare < dawn_metric.max_station_diff;
|
||||
return sta_count - sta_count_to_compare > dawn_metric.max_station_diff;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue