summaryrefslogtreecommitdiff
path: root/include/logger.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2010-10-21 23:20:48 -0400
committerAdam <Adam@anope.org>2010-10-21 23:20:48 -0400
commit791c2b89a5b09d3e3e3785669b29438ffec26295 (patch)
tree60a4647572e80d5f037fe2d9e49338a34cc0d6ea /include/logger.h
parent4f317a242104b623d2e5257bc672fd56c0240a0e (diff)
Changed the log:normal config directive to a list like the other log values, and fixed a potential crash from rehashing while sending mail
Diffstat (limited to 'include/logger.h')
-rw-r--r--include/logger.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/logger.h b/include/logger.h
index 518e2114f..6d134c227 100644
--- a/include/logger.h
+++ b/include/logger.h
@@ -78,11 +78,11 @@ class CoreExport LogInfo
std::list<Anope::string> Servers;
std::list<Anope::string> Users;
std::list<Anope::string> Channels;
- bool Normal;
+ std::list<Anope::string> Normal;
bool RawIO;
bool Debug;
- LogInfo(int logage, bool inhabit, bool normal, bool rawio, bool debug);
+ LogInfo(int logage, bool inhabit, bool rawio, bool debug);
~LogInfo();