nl80211: Remove excessive nl80211_set_mode() call
When authenticating, and the interface type is not already NL80211_IFTYPE_STATION, we need to call wpa_driver_nl80211_set_mode() only once. Remove the excessive call. Signed-off-by: Eliad Peller <eliad@wizery.com>
This commit is contained in:
parent
7615078caf
commit
f14f5141a0
1 changed files with 2 additions and 4 deletions
|
@ -2947,10 +2947,8 @@ static int wpa_driver_nl80211_authenticate(
|
|||
drv->associated = 0;
|
||||
os_memset(drv->auth_bssid, 0, ETH_ALEN);
|
||||
/* FIX: IBSS mode */
|
||||
if (drv->nlmode != NL80211_IFTYPE_STATION)
|
||||
wpa_driver_nl80211_set_mode(priv, IEEE80211_MODE_INFRA);
|
||||
|
||||
if (wpa_driver_nl80211_set_mode(priv, IEEE80211_MODE_INFRA) < 0)
|
||||
if (drv->nlmode != NL80211_IFTYPE_STATION &&
|
||||
wpa_driver_nl80211_set_mode(priv, IEEE80211_MODE_INFRA) < 0)
|
||||
return -1;
|
||||
|
||||
retry:
|
||||
|
|
Loading…
Reference in a new issue