From: Jouni Malinen Date: Sun, 2 Jul 2017 09:36:15 +0000 (+0300) Subject: DPP: Fix configuration item list X-Git-Tag: hostap_2_7~1250 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44d6b272cf92b7d3da08270e3d7a8cd9a1f2f867;p=thirdparty%2Fhostap.git DPP: Fix configuration item list This was supposed to use semicolons, not commas.. Signed-off-by: Jouni Malinen --- diff --git a/wpa_supplicant/config_file.c b/wpa_supplicant/config_file.c index 7de043821..6558a1b76 100644 --- a/wpa_supplicant/config_file.c +++ b/wpa_supplicant/config_file.c @@ -850,11 +850,11 @@ static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid) INT(group_rekey); INT(ignore_broadcast_ssid); #ifdef CONFIG_DPP - STR(dpp_connector), - STR(dpp_netaccesskey), - INT(dpp_netaccesskey_expiry), - STR(dpp_csign), - INT(dpp_csign_expiry), + STR(dpp_connector); + STR(dpp_netaccesskey); + INT(dpp_netaccesskey_expiry); + STR(dpp_csign); + INT(dpp_csign_expiry); #endif /* CONFIG_DPP */ #ifdef CONFIG_HT_OVERRIDES INT_DEF(disable_ht, DEFAULT_DISABLE_HT);