mirror of https://github.com/BOINC/boinc.git
- client:restore --detach_phase_two as synonym for --detach_console
svn path=/trunk/boinc/; revision=23711
This commit is contained in:
parent
94e8c48220
commit
05ba632e2d
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue