aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2013-11-05 04:06:08 -0800
committerWladimir J. van der Laan <[email protected]>2013-11-05 04:06:08 -0800
commit25d056a58ffdf790c6bf4d9b6bbd65be44f73fc2 (patch)
tree8c93c2d7d850323cd4defd209e7fc6bebcd4041a /src/init.cpp
parentMerge pull request #3198 from nvmd/compile_on_mavericks (diff)
parentNo more fHaveGUI (diff)
downloaddiscoin-25d056a58ffdf790c6bf4d9b6bbd65be44f73fc2.tar.xz
discoin-25d056a58ffdf790c6bf4d9b6bbd65be44f73fc2.zip
Merge pull request #3196 from laanwj/2013_11_nohavegui
No more fHaveGUI
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/init.cpp b/src/init.cpp
index eb46aed99..80ba65f80 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -363,7 +363,7 @@ void ThreadImport(std::vector<boost::filesystem::path> vImportFiles)
/** Initialize bitcoin.
* @pre Parameters should be parsed and config file should be read.
*/
-bool AppInit2(boost::thread_group& threadGroup)
+bool AppInit2(boost::thread_group& threadGroup, bool fForceServer)
{
// ********************************************************* Step 1: setup
#ifdef _MSC_VER
@@ -490,14 +490,11 @@ bool AppInit2(boost::thread_group& threadGroup)
else if (nScriptCheckThreads > MAX_SCRIPTCHECK_THREADS)
nScriptCheckThreads = MAX_SCRIPTCHECK_THREADS;
- if (fDaemon)
+ if (fDaemon || fForceServer)
fServer = true;
else
fServer = GetBoolArg("-server", false);
- /* force fServer when running without GUI */
- if (!fHaveGUI)
- fServer = true;
fPrintToConsole = GetBoolArg("-printtoconsole", false);
fPrintToDebugger = GetBoolArg("-printtodebugger", false);
fLogTimestamps = GetBoolArg("-logtimestamps", true);