aboutsummaryrefslogtreecommitdiff
path: root/src/configreader.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-01-22 21:48:22 +0000
committerGravatar Sadie Powell2023-01-22 22:36:31 +0000
commitcadf228c3e66ce33c3599539b6650e26dfc3bff5 (patch)
tree5b4fc56f9e4e6a63900fedd128fe920af2d73349 /src/configreader.cpp
parentFix some Doxygen comment issues. (diff)
Convert various enums to strongly typed scoped enums.
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r--src/configreader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index d6a584540..e3bdb14dc 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -700,7 +700,7 @@ void ConfigReaderThread::OnStop()
if (Config->RawLog && !old->RawLog)
{
for (auto* luser : ServerInstance->Users.GetLocalUsers())
- Log::Manager::NotifyRawIO(luser, MSG_PRIVMSG);
+ Log::Manager::NotifyRawIO(luser, MessageType::PRIVMSG);
}
Config = old;