diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/config.c | 2 | ||||
-rw-r--r-- | src/main.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/config.c b/src/config.c index 82a2fcac6..82a92bc70 100644 --- a/src/config.c +++ b/src/config.c @@ -12,7 +12,7 @@ */ #include "services.h" -#include "configreader.h" +#include "config.h" #include "hashcomp.h" // If this gets added to services.h or someplace else later, remove it from here -- CyberBotX /*************************************************************************/ diff --git a/src/main.c b/src/main.c index 68423e4ec..c5974f029 100644 --- a/src/main.c +++ b/src/main.c @@ -43,7 +43,7 @@ std::string services_dir; /* -dir dirname */ std::string services_bin; /* Binary as specified by the user */ std::string orig_cwd; /* Original current working directory */ -std::string log_filename = LOG_FILENAME; /* -log filename */ +std::string log_filename = "services.log"; /* -log filename */ int debug = 0; /* -debug */ int readonly = 0; /* -readonly */ bool LogChan = false; /* -logchan */ |