Fix bad wpa.c merge

Patch 6447609b523a020db19a3b5c20c6e6e8cd0aa868 applied incorrectly.
Missed a wpa_supplicant_install_gtk call, potentially breaking FILS
connections.

Bug: 68204262
Test: Wifi Integration tests
Change-Id: I69132dfd8157ba1f9c68942171604a630829bec4
diff --git a/src/rsn_supp/wpa.c b/src/rsn_supp/wpa.c
index af72298..8153f79 100644
--- a/src/rsn_supp/wpa.c
+++ b/src/rsn_supp/wpa.c
@@ -3797,7 +3797,7 @@
 	os_memcpy(gd.gtk, kde.gtk + 2, kde.gtk_len - 2);
 
 	wpa_printf(MSG_DEBUG, "FILS: Set GTK to driver");
-	if (wpa_supplicant_install_gtk(sm, &gd, elems.key_delivery) < 0) {
+	if (wpa_supplicant_install_gtk(sm, &gd, elems.key_delivery, 0) < 0) {
 		wpa_printf(MSG_DEBUG, "FILS: Failed to set GTK");
 		goto fail;
 	}