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:
Eliad Peller 2011-02-01 16:38:38 +02:00 committed by Jouni Malinen
parent 7615078caf
commit f14f5141a0

View file

@ -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: