From: Jouni Malinen Date: Fri, 6 Apr 2012 15:11:47 +0000 (+0300) Subject: Do not write bg_scan_period value if default (-1) has not been changed X-Git-Tag: hostap_2_0~755 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4f920dc63e6f340d71ecd60980c173dda2fa0da8;p=thirdparty%2Fhostap.git Do not write bg_scan_period value if default (-1) has not been changed There is no need to force this configuration parameter to be written into the configuration file for each network block that has not modified the default value. Signed-hostap: Jouni Malinen --- diff --git a/wpa_supplicant/config_file.c b/wpa_supplicant/config_file.c index 2a323b064..671f7d655 100644 --- a/wpa_supplicant/config_file.c +++ b/wpa_supplicant/config_file.c @@ -588,7 +588,7 @@ static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid) write_psk(f, ssid); write_proto(f, ssid); write_key_mgmt(f, ssid); - INT(bg_scan_period); + INT_DEF(bg_scan_period, DEFAULT_BG_SCAN_PERIOD); write_pairwise(f, ssid); write_group(f, ssid); write_auth_alg(f, ssid);