*** empty log message ***

svn path=/trunk/boinc/; revision=9610
This commit is contained in:
David Anderson 2006-03-06 23:23:41 +00:00
parent 6ee8504787
commit fd218cdee3
3 changed files with 13 additions and 0 deletions

View File

@ -2639,3 +2639,9 @@ David 6 Mar 2006
setup_project.py
sched/
db_dump_spec.xml (new)
David 6 Mar 2006
- boinc_cmd: add --read_global_prefs_override command
lib/
boinc_cmd.C

View File

@ -115,6 +115,11 @@ list_item(
or display (X11) to use.
"
);
list_item("--read_global_prefs_override",
"Tell the core client to read the <code>global_prefs_override.xml</code>
file, and incorporate any global preferences indicated there.
"
);
list_item("--quit", "");
list_end();

View File

@ -420,6 +420,8 @@ int main(int argc, char** argv) {
} else {
cao.print();
}
} else if (!strcmp(cmd, "--read_global_prefs_override")) {
retval = rpc.read_global_prefs_override();
} else if (!strcmp(cmd, "--quit")) {
retval = rpc.quit();
} else {