Add new key_mgmt values for wpa_supplicant STATUS command

Recently added OWE and DPP were missing from the key_mgmt string list.

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
Jouni Malinen 2017-07-03 14:33:16 +03:00 committed by Jouni Malinen
parent 1b3f536dbc
commit 8885023252

View file

@ -1620,6 +1620,10 @@ const char * wpa_key_mgmt_txt(int key_mgmt, int proto)
return "FT-FILS-SHA256";
case WPA_KEY_MGMT_FT_FILS_SHA384:
return "FT-FILS-SHA384";
case WPA_KEY_MGMT_OWE:
return "OWE";
case WPA_KEY_MGMT_DPP:
return "DPP";
default:
return "UNKNOWN";
}