diff options
author | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-10-25 04:12:47 +0000 |
---|---|---|
committer | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-10-25 04:12:47 +0000 |
commit | 7a429517af09a2240f938a5570f83e4c6b9f9f9f (patch) | |
tree | 4f334eb0878f9d9ef1b985566b50e723969e7b84 /src/main.c | |
parent | 0e8de37778d82c7909038b8847b92a98aff6f5e7 (diff) |
added options:enablelogchannel config file option, which turns on the logchannel on startup. yay!
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2585 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index d8fbe5627..4d9bfb1c1 100644 --- a/src/main.c +++ b/src/main.c @@ -48,7 +48,7 @@ std::string orig_cwd; /* Original current working directory */ const char *log_filename = LOG_FILENAME; /* -log filename */ int debug = 0; /* -debug */ int readonly = 0; /* -readonly */ -int logchan = 0; /* -logchan */ +bool LogChan = false; /* -logchan */ int nofork = 0; /* -nofork */ int forceload = 0; /* -forceload */ int nothird = 0; /* -nothrid */ |