mirror of https://github.com/BOINC/boinc.git
client: fix bug in set_cc_config RPC saving value of <start_delay> option.
- CC_CONFIG.start_delay is a double, not an int, so CC_CONFIG::write() must use %f format rather than %d.
This commit is contained in:
parent
b17455816d
commit
ba9709cb9f
|
@ -652,7 +652,7 @@ int CC_CONFIG::write(MIOFILE& out, LOG_FLAGS& log_flags) {
|
||||||
" <save_stats_days>%d</save_stats_days>\n"
|
" <save_stats_days>%d</save_stats_days>\n"
|
||||||
" <skip_cpu_benchmarks>%d</skip_cpu_benchmarks>\n"
|
" <skip_cpu_benchmarks>%d</skip_cpu_benchmarks>\n"
|
||||||
" <simple_gui_only>%d</simple_gui_only>\n"
|
" <simple_gui_only>%d</simple_gui_only>\n"
|
||||||
" <start_delay>%d</start_delay>\n"
|
" <start_delay>%f</start_delay>\n"
|
||||||
" <stderr_head>%d</stderr_head>\n"
|
" <stderr_head>%d</stderr_head>\n"
|
||||||
" <suppress_net_info>%d</suppress_net_info>\n"
|
" <suppress_net_info>%d</suppress_net_info>\n"
|
||||||
" <unsigned_apps_ok>%d</unsigned_apps_ok>\n"
|
" <unsigned_apps_ok>%d</unsigned_apps_ok>\n"
|
||||||
|
|
Loading…
Reference in New Issue