Changes: invoker's command line parameter --test is removed

pull/1/head
Alexey Shilov 16 years ago
parent 12a33d246e
commit c1446b8d35

@ -42,7 +42,6 @@ Daemon * Daemon::m_instance = NULL;
int Daemon::m_lockFd = -1;
Daemon::Daemon(int & argc, char * argv[]) :
m_testMode(false),
m_daemon(false),
m_quiet(false)
{
@ -387,9 +386,5 @@ void Daemon::parseArgs(const ArgVect & args)
{
m_quiet = true;
}
else if ((*i) == "--test")
{
m_testMode = true;
}
}
}

@ -100,9 +100,6 @@ private:
//! Don't use console for output
void consoleQuiet();
//! Test mode flag
bool m_testMode;
//! Daemonize flag
bool m_daemon;

Loading…
Cancel
Save