merge: branch 'fix-suiteb'

nmcli: add WPA-EAP-SUITE-B-192 to SECURITY when ap is wpa-eap-suite-b-192

https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/1527
This commit is contained in:
Beniamino Galvani 2023-03-01 22:49:47 +00:00
commit 7ba9f94237

View file

@ -1376,6 +1376,10 @@ fill_output_access_point(NMAccessPoint *ap, const APInfo *info)
|| (rsn_flags & NM_802_11_AP_SEC_KEY_MGMT_802_1X)) {
g_string_append(security_str, "802.1X ");
}
if ((wpa_flags & NM_802_11_AP_SEC_KEY_MGMT_EAP_SUITE_B_192)
|| (rsn_flags & NM_802_11_AP_SEC_KEY_MGMT_EAP_SUITE_B_192)) {
g_string_append(security_str, "WPA-EAP-SUITE-B-192 ");
}
}
if (security_str->len > 0)