Browse Source

force fDaemon in bitcoind

miguelfreitas
tcatm 14 years ago
parent
commit
ea7cd31751
  1. 3
      init.cpp

3
init.cpp

@ -199,9 +199,10 @@ bool AppInit2(int argc, char* argv[])
else else
fServer = GetBoolArg("-server"); fServer = GetBoolArg("-server");
/* force fServer when running without GUI */ /* force fServer and fDaemon when running without GUI */
#ifndef GUI #ifndef GUI
fServer = true; fServer = true;
fDaemon = true;
#endif #endif
fPrintToConsole = GetBoolArg("-printtoconsole"); fPrintToConsole = GetBoolArg("-printtoconsole");

Loading…
Cancel
Save