Browse Source

Store FST parameters to configuration file

This was forgotten when the parameters were added.

Signed-off-by: Jouni Malinen <j@w1.fi>
Jouni Malinen 8 years ago
parent
commit
54736d8358
1 changed files with 7 additions and 0 deletions
  1. 7 0
      wpa_supplicant/config_file.c

+ 7 - 0
wpa_supplicant/config_file.c

@@ -1406,6 +1406,13 @@ static void wpa_config_write_global(FILE *f, struct wpa_config *config)
 
 	if (config->osu_dir)
 		fprintf(f, "osu_dir=%s\n", config->osu_dir);
+
+	if (config->fst_group_id)
+		fprintf(f, "fst_group_id=%s\n", config->fst_group_id);
+	if (config->fst_priority)
+		fprintf(f, "fst_priority=%d\n", config->fst_priority);
+	if (config->fst_llt)
+		fprintf(f, "fst_llt=%d\n", config->fst_llt);
 }
 
 #endif /* CONFIG_NO_CONFIG_WRITE */