From 6c1f6f4550eece966af3763ca60b70f506819ebd Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sun, 7 Apr 2013 23:10:49 -0700 Subject: [PATCH] - client: put back --detach (because BoincTasks assumes it) and --detach_console (because the documentation says it exists). I'm not sure why --detach_phase_two is there, but leave it. --- client/cs_cmdline.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cs_cmdline.cpp b/client/cs_cmdline.cpp index 657bec424b..7a19eff0c9 100644 --- a/client/cs_cmdline.cpp +++ b/client/cs_cmdline.cpp @@ -142,7 +142,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_phase_two)) { + } else if (ARG(detach_phase_two) || ARG(detach) || ARG(detach_console)) { detach_console = true; } else if (ARG(detach_project)) { if (i == argc-1) show_options = true;