ap_set_security: Add SAE as an alais for WPA2-SAE value

The KeyMgmtType value for SAE will be renamed, so accept both the old
and the new name.

Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
diff --git a/ap.c b/ap.c
index 9de8d5e..7845f97 100644
--- a/ap.c
+++ b/ap.c
@@ -1635,7 +1635,8 @@
 		} else if (strcasecmp(val, "WPA2-PSK-Mixed") == 0) {
 			dut->ap_key_mgmt = AP_WPA2_PSK_MIXED;
 			dut->ap_cipher = AP_CCMP_TKIP;
-		} else if (strcasecmp(val, "WPA2-SAE") == 0) {
+		} else if (strcasecmp(val, "WPA2-SAE") == 0 ||
+			   strcasecmp(val, "SAE") == 0) {
 			dut->ap_key_mgmt = AP_WPA2_SAE;
 			dut->ap_cipher = AP_CCMP;
 			dut->ap_pmf = AP_PMF_REQUIRED;