FT: Fix writing of ft_prepend_pmkid configuration parameter
This was missing a newline at the end of the line.
Fixes: 8fa52a7974
("FT: Allow wpa_supplicant to be configured to prepend PMKR1Name")
Signed-off-by: Shivani Baranwal <quic_shivbara@quicinc.com>
This commit is contained in:
parent
5b0112a185
commit
58ba550c53
1 changed files with 1 additions and 1 deletions
|
@ -1628,7 +1628,7 @@ static void wpa_config_write_global(FILE *f, struct wpa_config *config)
|
||||||
MAC2STR(config->mld_connect_bssid_pref));
|
MAC2STR(config->mld_connect_bssid_pref));
|
||||||
#endif /* CONFIG_TESTING_OPTIONS */
|
#endif /* CONFIG_TESTING_OPTIONS */
|
||||||
if (config->ft_prepend_pmkid)
|
if (config->ft_prepend_pmkid)
|
||||||
fprintf(f, "ft_prepend_pmkid=%d", config->ft_prepend_pmkid);
|
fprintf(f, "ft_prepend_pmkid=%d\n", config->ft_prepend_pmkid);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* CONFIG_NO_CONFIG_WRITE */
|
#endif /* CONFIG_NO_CONFIG_WRITE */
|
||||||
|
|
Loading…
Add table
Reference in a new issue