diff options
author | Adam <Adam@anope.org> | 2010-10-21 23:20:48 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-10-21 23:20:48 -0400 |
commit | 791c2b89a5b09d3e3e3785669b29438ffec26295 (patch) | |
tree | 60a4647572e80d5f037fe2d9e49338a34cc0d6ea /include/logger.h | |
parent | 4f317a242104b623d2e5257bc672fd56c0240a0e (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.h | 4 |
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(); |