diff options
author | Dan Williams <dcbw@redhat.com> | 2007-05-10 22:57:23 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2007-05-11 14:54:54 -0400 |
commit | 889c05bdf3056b029b9fa95096eac4f0dfd3fb6f (patch) | |
tree | efbe9e5abc2ca8197cdd07044a39791725ffd226 /drivers/net/wireless/libertas/assoc.c | |
parent | 6affe785aaf983253b27e71e67bf5fceaee6ff88 (diff) |
[PATCH] libertas: remove WLAN_802_11_WEP_STATUS enum
Also change WEPstatus to "wep_enabled"; it's clearer and consistent with the
WPAenabled and WPA2enabled members.
Signed-off-by: Dan Williams <dcbw@redhat.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/assoc.c')
-rw-r--r-- | drivers/net/wireless/libertas/assoc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/libertas/assoc.c b/drivers/net/wireless/libertas/assoc.c index 7ebd83605776..cc6352ee4385 100644 --- a/drivers/net/wireless/libertas/assoc.c +++ b/drivers/net/wireless/libertas/assoc.c | |||
@@ -196,7 +196,7 @@ static int assoc_helper_wep_keys(wlan_private *priv, | |||
196 | goto out; | 196 | goto out; |
197 | 197 | ||
198 | /* enable/disable the MAC's WEP packet filter */ | 198 | /* enable/disable the MAC's WEP packet filter */ |
199 | if (assoc_req->secinfo.WEPstatus == wlan802_11WEPenabled) | 199 | if (assoc_req->secinfo.wep_enabled) |
200 | adapter->currentpacketfilter |= cmd_act_mac_wep_enable; | 200 | adapter->currentpacketfilter |= cmd_act_mac_wep_enable; |
201 | else | 201 | else |
202 | adapter->currentpacketfilter &= ~cmd_act_mac_wep_enable; | 202 | adapter->currentpacketfilter &= ~cmd_act_mac_wep_enable; |