From ea7cd317516a6ec911e6a29bc0407a42a2534251 Mon Sep 17 00:00:00 2001 From: tcatm Date: Thu, 3 Mar 2011 22:31:44 +0100 Subject: [PATCH] force fDaemon in bitcoind --- init.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.cpp b/init.cpp index 0548accb0..f3ec28ba3 100644 --- a/init.cpp +++ b/init.cpp @@ -199,9 +199,10 @@ bool AppInit2(int argc, char* argv[]) else fServer = GetBoolArg("-server"); - /* force fServer when running without GUI */ + /* force fServer and fDaemon when running without GUI */ #ifndef GUI fServer = true; + fDaemon = true; #endif fPrintToConsole = GetBoolArg("-printtoconsole");