Comment 0 for bug 1956162

Revision history for this message
KOLANICH (kolanich) wrote :

>Problem: error `ERROR @wl_set_key_mgmt : invalid cipher group (1027076)`

Logic errors in error-reporting code cause a highly misleading message to be emitted. The problem is not within cipher group (that is supported WLAN_CIPHER_SUITE_CCMP).

```patch
- WL_ERR(("invalid cipher group (%d)\n", sme->crypto.cipher_group));
+ WL_ERR(("invalid akm suite (%d)\n", sme->crypto.akm_suites[0]));
```