- client:restore --detach_phase_two as synonym for --detach_console

svn path=/trunk/boinc/; revision=23711
This commit is contained in:
David Anderson 2011-06-12 21:30:53 +00:00
parent 94e8c48220
commit 05ba632e2d
2 changed files with 7 additions and 1 deletions

View File

@ -3490,3 +3490,9 @@ David 12 Jun 2011
many.cpp
api/
boinc_api.cpp
David 12 Jun 2011
- client:restore --detach_phase_two as synonym for --detach_console
client/
cs_cmdline.cpp

View File

@ -136,7 +136,7 @@ void CLIENT_STATE::parse_cmdline(int argc, char** argv) {
check_all_logins = true;
} else if (ARG(daemon)) {
executing_as_daemon = true;
} else if (ARG(detach_console)) {
} else if (ARG(detach_console) || ARG(detach_phase_two)) {
detach_console = true;
} else if (ARG(detach_project)) {
if (i == argc-1) show_options = true;