mesh: Remove unreachable code
ssid->frequency cannot be 0 in wpa_supplicant_mesh_init() since wpas_supplicant_join_mesh() rejects such a configuration. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
a64476403d
commit
d2cc8bbbf6
1 changed files with 1 additions and 7 deletions
|
@ -181,13 +181,7 @@ static int wpa_supplicant_mesh_init(struct wpa_supplicant *wpa_s,
|
||||||
ifmsh->mconf = mconf;
|
ifmsh->mconf = mconf;
|
||||||
|
|
||||||
/* need conf->hw_mode for supported rates. */
|
/* need conf->hw_mode for supported rates. */
|
||||||
if (ssid->frequency == 0) {
|
conf->hw_mode = ieee80211_freq_to_chan(ssid->frequency, &conf->channel);
|
||||||
conf->hw_mode = HOSTAPD_MODE_IEEE80211G;
|
|
||||||
conf->channel = 1;
|
|
||||||
} else {
|
|
||||||
conf->hw_mode = ieee80211_freq_to_chan(ssid->frequency,
|
|
||||||
&conf->channel);
|
|
||||||
}
|
|
||||||
if (conf->hw_mode == NUM_HOSTAPD_MODES) {
|
if (conf->hw_mode == NUM_HOSTAPD_MODES) {
|
||||||
wpa_printf(MSG_ERROR, "Unsupported mesh mode frequency: %d MHz",
|
wpa_printf(MSG_ERROR, "Unsupported mesh mode frequency: %d MHz",
|
||||||
ssid->frequency);
|
ssid->frequency);
|
||||||
|
|
Loading…
Add table
Reference in a new issue