]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
iwlagn: do not check for AP mode for WEP keys
authorJohannes Berg <johannes.berg@intel.com>
Wed, 18 Aug 2010 16:35:21 +0000 (09:35 -0700)
committerJohn W. Linville <linville@tuxdriver.com>
Tue, 24 Aug 2010 20:32:05 +0000 (16:32 -0400)
Even when we configure WEP keys in AP mode
ones without a station pointer are default
keys, so don't check for AP mode here.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/iwlwifi/iwl-agn.c

index 40b82d9f309eb88651c437eea3dd2b3bd0150d3a..5b967c014b41c99063d3c1406a402cc097ee1aef 100644 (file)
@@ -3450,7 +3450,7 @@ static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
         */
        if ((key->cipher == WLAN_CIPHER_SUITE_WEP40 ||
             key->cipher == WLAN_CIPHER_SUITE_WEP104) &&
-           !sta && vif->type != NL80211_IFTYPE_AP) {
+           !sta) {
                if (cmd == SET_KEY)
                        is_default_wep_key = !priv->key_mapping_key;
                else