MBO-STA: Add support for FT-PSK

Add support to configure key_mgmt as FT-PSK.

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
diff --git a/sta.c b/sta.c
index 2bcb6dc..970307f 100644
--- a/sta.c
+++ b/sta.c
@@ -1424,6 +1424,9 @@
 	} else if (alg && strcasecmp(alg, "SHA-1") == 0) {
 		if (set_network(ifname, id, "key_mgmt", "WPA-PSK") < 0)
 			return -2;
+	} else if (val && strcasecmp(val, "wpa2-ft") == 0) {
+		if (set_network(ifname, id, "key_mgmt", "FT-PSK") < 0)
+			return -2;
 	} else if ((val && strcasecmp(val, "wpa2-sha256") == 0) ||
 		   dut->sta_pmf == STA_PMF_REQUIRED) {
 		if (set_network(ifname, id, "key_mgmt",