diff options
author | Jouni Malinen <jouni@qca.qualcomm.com> | 2017-07-03 11:33:16 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2017-07-03 11:33:16 (GMT) |
commit | 8885023252609c5b6e868bdf18fd52171a3fd47c (patch) | |
tree | a38d06a87a06a69d229727c97624701f1aaf35ae | |
parent | 1b3f536dbcc934e8f2dc841e691b992d76ebdf3b (diff) | |
download | hostap-8885023252609c5b6e868bdf18fd52171a3fd47c.zip hostap-8885023252609c5b6e868bdf18fd52171a3fd47c.tar.gz hostap-8885023252609c5b6e868bdf18fd52171a3fd47c.tar.bz2 |
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>
-rw-r--r-- | src/common/wpa_common.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/wpa_common.c b/src/common/wpa_common.c index 2250190..bddaeea 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"; } |