mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-04-17 09:10:47 +02:00
client/cli: add support for SAE key management flag
This commit is contained in:
parent
ab0d348792
commit
998ebe731e
1 changed files with 3 additions and 1 deletions
|
|
@ -44,7 +44,7 @@
|
|||
static char *
|
||||
ap_wpa_rsn_flags_to_string (NM80211ApSecurityFlags flags)
|
||||
{
|
||||
char *flags_str[12];
|
||||
char *flags_str[13];
|
||||
int i = 0;
|
||||
|
||||
if (flags & NM_802_11_AP_SEC_PAIR_WEP40)
|
||||
|
|
@ -67,6 +67,8 @@ ap_wpa_rsn_flags_to_string (NM80211ApSecurityFlags flags)
|
|||
flags_str[i++] = "psk";
|
||||
if (flags & NM_802_11_AP_SEC_KEY_MGMT_802_1X)
|
||||
flags_str[i++] = "802.1X";
|
||||
if (flags & NM_802_11_AP_SEC_KEY_MGMT_SAE)
|
||||
flags_str[i++] = "sae";
|
||||
/* Make sure you grow flags_str when adding items here. */
|
||||
|
||||
if (i == 0)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue