From 1063daeff4d3e21966eef3c6f3fa715dc1b2c367 Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 10 Mar 2014 11:09:19 +0100 Subject: [PATCH] daemonising is no longer the default --- lib/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config.cpp b/lib/config.cpp index c2a5297f..fb2fff5e 100644 --- a/lib/config.cpp +++ b/lib/config.cpp @@ -491,7 +491,7 @@ void Util::Config::addBasicConnectorOptions(JSON::Value & capabilities){ option["long_off"] = "nodaemon"; option["short_off"] = "n"; option["help"] = "Whether or not to daemonize the process after starting."; - option["value"].append(1ll); + option["value"].append(0ll); addOption("daemonize", option); option.null();