hostapd: Fix a typo in function name
This was supposed to use "hostapd_" prefix. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
6ec02d77d6
commit
dc67982381
3 changed files with 3 additions and 3 deletions
|
@ -123,7 +123,7 @@ int hostapd_neighbor_remove(struct hostapd_data *hapd, const u8 *bssid,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void hostpad_free_neighbor_db(struct hostapd_data *hapd)
|
void hostapd_free_neighbor_db(struct hostapd_data *hapd)
|
||||||
{
|
{
|
||||||
struct hostapd_neighbor_entry *nr, *prev;
|
struct hostapd_neighbor_entry *nr, *prev;
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,6 @@ int hostapd_neighbor_set(struct hostapd_data *hapd, const u8 *bssid,
|
||||||
const struct wpabuf *civic, int stationary);
|
const struct wpabuf *civic, int stationary);
|
||||||
int hostapd_neighbor_remove(struct hostapd_data *hapd, const u8 *bssid,
|
int hostapd_neighbor_remove(struct hostapd_data *hapd, const u8 *bssid,
|
||||||
const struct wpa_ssid_value *ssid);
|
const struct wpa_ssid_value *ssid);
|
||||||
void hostpad_free_neighbor_db(struct hostapd_data *hapd);
|
void hostapd_free_neighbor_db(struct hostapd_data *hapd);
|
||||||
|
|
||||||
#endif /* NEIGHBOR_DB_H */
|
#endif /* NEIGHBOR_DB_H */
|
||||||
|
|
|
@ -558,7 +558,7 @@ int hostapd_send_range_req(struct hostapd_data *hapd, const u8 *addr,
|
||||||
|
|
||||||
void hostapd_clean_rrm(struct hostapd_data *hapd)
|
void hostapd_clean_rrm(struct hostapd_data *hapd)
|
||||||
{
|
{
|
||||||
hostpad_free_neighbor_db(hapd);
|
hostapd_free_neighbor_db(hapd);
|
||||||
eloop_cancel_timeout(hostapd_lci_rep_timeout_handler, hapd, NULL);
|
eloop_cancel_timeout(hostapd_lci_rep_timeout_handler, hapd, NULL);
|
||||||
hapd->lci_req_active = 0;
|
hapd->lci_req_active = 0;
|
||||||
eloop_cancel_timeout(hostapd_range_rep_timeout_handler, hapd, NULL);
|
eloop_cancel_timeout(hostapd_range_rep_timeout_handler, hapd, NULL);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue