diff options
author | Adam <Adam@drink-coca-cola.info> | 2010-05-08 13:46:13 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-06-18 21:00:02 -0400 |
commit | e78a055c2b5c9fe3a4e4ef32058f161eceb3df1c (patch) | |
tree | cf3b3e94a5408f54cfd79ffdb4ae06f19d6fb142 /src | |
parent | af805e5b45f75dec7f4ce16ffc322c8880f9859c (diff) |
Removed old config.h and moved configreader.h to config.h
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 */ |