RDKB-62931 : Dropdown menu of Network still has WPA3-PCM after restore of Wireless Settings#1292
RDKB-62931 : Dropdown menu of Network still has WPA3-PCM after restore of Wireless Settings#1292Gowthamik93 wants to merge 1 commit into
Conversation
…e of Wireless Settings Reason for change: WPA3-PCM mode not clearing in wifi restore Test Procedure: Build & Verify Risks: NA Priority: P1 Signed-off-by: Desu sravya <desu.sravya@vantiva.com>
There was a problem hiding this comment.
Pull request overview
This PR addresses RDKB-62931 by ensuring the WPA3-Personal-Compatibility (WPA3-PCM) option is cleared after a wireless restore/factory reset so it no longer appears enabled in the network security dropdown.
Changes:
- Adds a NULL check for RFC parameter retrieval before reading RFC config.
- Clears
wpa3_compatibility_enableand persists the updated RFC config duringwifi_factory_reset().
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| if ((rfc_param == NULL) || wifidb_get_rfc_config(0,rfc_param) != 0) { | ||
| wifi_util_error_print(WIFI_DMCLI,"%s:%d: Error getting RFC config\n",__func__, __LINE__); | ||
| goto cleanup; | ||
| } |
| //clearing wpa3_personal_compatibility mode after wifi restore | ||
| rfc_param->wpa3_compatibility_enable = FALSE; | ||
| get_wifidb_obj()->desc.update_rfc_config_fn(0, rfc_param); | ||
|
|
|
Are you able to create a gerrit with this change for verification builds? if yes, please do and paste link to it here. If not, just answer. |
No , I just brought changes to main branch as per request https://ccp.sys.comcast.net/browse/RDKB-62931?focusedId=25810039&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-25810039 |
RDKB-62931 : Dropdown menu of Network still has WPA3-PCM after restore of Wireless Settings
(Cherrypick of #869)
Reason for change: WPA3-PCM mode not clearing in wifi restore
Test Procedure: Build & Verify
Risks: NA
Priority: P1
Signed-off-by: Desu sravya desu.sravya@vantiva.com