From: Jouni Malinen Date: Mon, 3 Jul 2017 11:33:16 +0000 (+0300) Subject: Add new key_mgmt values for wpa_supplicant STATUS command X-Git-Tag: hostap_2_7~1230 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8885023252609c5b6e868bdf18fd52171a3fd47c;p=thirdparty%2Fhostap.git 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 --- diff --git a/src/common/wpa_common.c b/src/common/wpa_common.c index 2250190fd..bddaeeace 100644 --- a/src/common/wpa_common.c +++ b/src/common/wpa_common.c @@ -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"; }