]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Add new key_mgmt values for wpa_supplicant STATUS command
authorJouni Malinen <jouni@qca.qualcomm.com>
Mon, 3 Jul 2017 11:33:16 +0000 (14:33 +0300)
committerJouni Malinen <j@w1.fi>
Mon, 3 Jul 2017 11:33:16 +0000 (14:33 +0300)
Recently added OWE and DPP were missing from the key_mgmt string list.

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
src/common/wpa_common.c

index 2250190fd1f214e10e6d3e935fbc21086612244c..bddaeeace4113d5afa2557d382154049adc2638d 100644 (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";
        }