summaryrefslogtreecommitdiff
path: root/src/ap/hostapd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ap/hostapd.c')
-rw-r--r--src/ap/hostapd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ap/hostapd.c b/src/ap/hostapd.c
index 8b3fb404d..a20882794 100644
--- a/src/ap/hostapd.c
+++ b/src/ap/hostapd.c
@@ -1476,11 +1476,11 @@ static int hostapd_setup_bss(struct hostapd_data *hapd, int first,
return -1;
}
- if (hapd->wpa_auth && wpa_init_keys(hapd->wpa_auth) < 0)
+ if (start_beacon && hostapd_start_beacon(hapd, flush_old_stations) < 0)
return -1;
- if (start_beacon)
- return hostapd_start_beacon(hapd, flush_old_stations);
+ if (hapd->wpa_auth && wpa_init_keys(hapd->wpa_auth) < 0)
+ return -1;
return 0;
}