Bugzilla – Bug 1013
Driver does not properly set capabilities
Last modified: 2006-04-27 23:15:44
You need to log in before you can comment on or make changes to this bug.
This fixes NetworkManager for me, taken from the ipw2200 driver... --- ipw3945.c.orig 2006-04-12 20:09:32.000000000 -0400 +++ ipw3945.c 2006-04-12 19:56:36.000000000 -0400 @@ -11639,6 +11639,11 @@ range->event_capa[1] = IW_EVENT_CAPA_K_1; #endif /* WIRELESS_EXT > 16 */ +#if WIRELESS_EXT >= 18 + range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_WPA2 | + IW_ENC_CAPA_CIPHER_TKIP | IW_ENC_CAPA_CIPHER_CCMP; +#endif + mutex_unlock(&priv->mutex); IPW_DEBUG_WX("GET Range\n"); return 0;
Created an attachment (id=766) [details] Patch Properly formatted patch
Change the status for James to pick up. Thanks for your patch.
Merged for 1.0.1. Setting to Fixed.
I have checked with 1.0.2 , the patch has been merged for 1.0.2 . Eric ,can you verify this bug?
Yes, I've verified that the capabilities in 1.0.2 work perfectly in NetworkManager. Thanks for committing this so quickly.