mirror of https://github.com/BOINC/boinc.git
lib: don't write <data_dir> to cc_config.xml if empty string, because older versions of BOINC choke
svn path=/trunk/boinc/; revision=23491
This commit is contained in:
parent
64529f6ca3
commit
d27633a516
|
@ -2729,7 +2729,10 @@ Charlie 29 Apr 2011
|
||||||
cc_config.cpp
|
cc_config.cpp
|
||||||
|
|
||||||
Charlie 1 May 2011
|
Charlie 1 May 2011
|
||||||
- lib: initialize data_dir in CONFIG::defaults().
|
- lib: initialize data_dir in CONFIG::defaults(); don't write <data_dir> to
|
||||||
|
cc_config.xml if empty string, because older versions of BOINC choke.
|
||||||
|
|
||||||
lib/
|
lib/
|
||||||
cc_config.cpp
|
cc_config.cpp
|
||||||
|
|
||||||
|
Charlie 1 May 2011
|
||||||
|
|
|
@ -437,12 +437,15 @@ int CONFIG::write(MIOFILE& out, LOG_FLAGS& log_flags) {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Older versions of BOINC choke on empty data_dir string
|
||||||
|
if (strlen(data_dir)) {
|
||||||
|
out.printf(" <data_dir>%s</data_dir>\n", data_dir);
|
||||||
|
}
|
||||||
|
|
||||||
out.printf(
|
out.printf(
|
||||||
" <data_dir>%s</data_dir>\n"
|
|
||||||
" <disallow_attach>%d</disallow_attach>\n"
|
" <disallow_attach>%d</disallow_attach>\n"
|
||||||
" <dont_check_file_sizes>%d</dont_check_file_sizes>\n"
|
" <dont_check_file_sizes>%d</dont_check_file_sizes>\n"
|
||||||
" <dont_contact_ref_site>%d</dont_contact_ref_site>\n",
|
" <dont_contact_ref_site>%d</dont_contact_ref_site>\n",
|
||||||
data_dir,
|
|
||||||
disallow_attach,
|
disallow_attach,
|
||||||
dont_check_file_sizes,
|
dont_check_file_sizes,
|
||||||
dont_contact_ref_site
|
dont_contact_ref_site
|
||||||
|
|
Loading…
Reference in New Issue