Browse Source

nl80211: disable_11b_rates on interface mode change

disable_11b_rates() is called on interface addition,
but not on interface type change, resulting in 11b rates
enabled on p2p interfaces.

Signed-off-by: Eliad Peller <eliad@wizery.com>
Eliad Peller 13 years ago
parent
commit
083590503b
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/drivers/driver_nl80211.c

+ 3 - 0
src/drivers/driver_nl80211.c

@@ -5770,6 +5770,9 @@ done:
 		bss->beacon_set = 0;
 	}
 
+	if (!ret && drv->disable_11b_rates)
+		nl80211_disable_11b_rates(drv, drv->ifindex, 1);
+
 	if (ret)
 		wpa_printf(MSG_DEBUG, "nl80211: Interface mode change to %d "
 			   "from %d failed", nlmode, drv->nlmode);