iwinfo: Add missing auth_suites mappings for WPA3

`iwinfo.h` says:
    #define IWINFO_KMGMT_COUNT   5
    ...
    extern const char *IWINFO_KMGMT_NAMES[IWINFO_KMGMT_COUNT];

Though only only 3 items are defined. The other two were forgotten
when adding WPA3 support. The `auth_suites` table exposed via Lua
never included the items "SAE" and "OWE" until this commit.

Fixes: f8ef450652 ("iwinfo: Add support for WPA3")
Signed-off-by: Tjeu Kayim <15987676+TjeuKayim@users.noreply.github.com>
This commit is contained in:
Tjeu Kayim 2022-07-28 10:47:09 +02:00 committed by Hauke Mehrtens
parent dc6847eb5e
commit 705d3b5cc3

View file

@ -37,6 +37,8 @@ const char *IWINFO_KMGMT_NAMES[] = {
"NONE", "NONE",
"802.1X", "802.1X",
"PSK", "PSK",
"SAE",
"OWE",
}; };
const char *IWINFO_AUTH_NAMES[] = { const char *IWINFO_AUTH_NAMES[] = {