Browse Source

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>
Jouni Malinen 7 years ago
parent
commit
8885023252
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/common/wpa_common.c

+ 4 - 0
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";
 	}