Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 147357 Details for
Bug 221768
prism54 drivers stops working with NetworkManager and dhcp
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Fix WEP and unencrypted modes
prism54-fix-we-19-wep.patch (text/plain), 939 bytes, created by
Dan Williams
on 2007-02-05 15:06:07 UTC
(
hide
)
Description:
Fix WEP and unencrypted modes
Filename:
MIME Type:
Creator:
Dan Williams
Created:
2007-02-05 15:06:07 UTC
Size:
939 bytes
patch
obsolete
>diff --git a/drivers/net/wireless/prism54/isl_ioctl.c b/drivers/net/wireless/prism54/isl_ioctl.c >index 838d510..114dc25 100644 >--- a/drivers/net/wireless/prism54/isl_ioctl.c >+++ b/drivers/net/wireless/prism54/isl_ioctl.c >@@ -1395,11 +1395,17 @@ static int prism54_set_auth(struct net_device *ndev, > break; > > case IW_AUTH_RX_UNENCRYPTED_EAPOL: >- dot1x = param->value ? 1 : 0; >+ /* Don't allow turning on dot1x in WEP or unencrypted mode; >+ * it appears to make all associations fail. >+ */ >+ if (!wpa && param->value) >+ break; >+ dot1x = param->value ? 0x01 : 0; > break; > > case IW_AUTH_PRIVACY_INVOKED: > privinvoked = param->value ? 1 : 0; >+ break; > > case IW_AUTH_DROP_UNENCRYPTED: > exunencrypt = param->value ? 1 : 0; >@@ -1589,6 +1595,7 @@ static int prism54_set_encodeext(struct net_device *ndev, > } > key.type = DOT11_PRIV_TKIP; > key.length = KEY_SIZE_TKIP; >+ break; > default: > return -EINVAL; > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 221768
:
147357
|
148106