aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_alltime.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2020-10-26 23:40:24 +0000
committerGravatar Sadie Powell2020-10-27 00:59:11 +0000
commit7cb27dabe695505d2eb7b942c4fbf518dda8e6b3 (patch)
tree12f7541d3389efa9a084d2a4859d6ce4ede43b03 /src/modules/m_alltime.cpp
parentReplace the check for eventfd() with a C++17 header check. (diff)
downloadinspircd++-7cb27dabe695505d2eb7b942c4fbf518dda8e6b3.tar.gz
inspircd++-7cb27dabe695505d2eb7b942c4fbf518dda8e6b3.tar.bz2
inspircd++-7cb27dabe695505d2eb7b942c4fbf518dda8e6b3.zip
Convert CmdResult to an 8-bit strongly typed enum.
Diffstat (limited to 'src/modules/m_alltime.cpp')
-rw-r--r--src/modules/m_alltime.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_alltime.cpp b/src/modules/m_alltime.cpp
index 0755b1505..736778de8 100644
--- a/src/modules/m_alltime.cpp
+++ b/src/modules/m_alltime.cpp
@@ -42,7 +42,7 @@ class CommandAlltime : public Command
user->WriteRemoteNotice(msg);
/* we want this routed out! */
- return CMD_SUCCESS;
+ return CmdResult::SUCCESS;
}
RouteDescriptor GetRouting(User* user, const Params& parameters) override