From: Shanyu Zhao <shanyu.zhao@xxxxxxxxx> Need to set bssid to NULL in cfg80211's SIOCIWESSID function, otherwise after "iwconfig wlanx ap <mac>", the "iwconfig wlanx essid" won't work. Cc: stable@xxxxxxxxxx Signed-off-by: Shanyu Zhao <shanyu.zhao@xxxxxxxxx> --- net/wireless/wext-sme.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/net/wireless/wext-sme.c b/net/wireless/wext-sme.c index eede356..5a67dd5 100644 --- a/net/wireless/wext-sme.c +++ b/net/wireless/wext-sme.c @@ -194,6 +194,7 @@ int cfg80211_mgd_wext_siwessid(struct net_device *dev, wdev->wext.connect.ssid = wdev->wext.ssid; memcpy(wdev->wext.ssid, ssid, len); wdev->wext.connect.ssid_len = len; + wdev->wext.connect.bssid = NULL; wdev->wext.connect.crypto.control_port = false; -- 1.6.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html