mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-01 12:38:04 +02:00
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:
commit
7ba9f94237
1 changed files with 4 additions and 0 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue