aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_operlog.cpp
diff options
context:
space:
mode:
authorGravatar Josh Soref2021-06-21 16:47:06 -0400
committerGravatar GitHub2021-06-21 21:47:06 +0100
commitde6d4dbd1e8845e08c2d87cd89a919e5b21ba619 (patch)
treef3c964db5830e7b15361889cd61daceabe3d7466 /src/modules/m_operlog.cpp
parentUpdate example configuration for 'if-host-match' oper autologin option. (diff)
Fix various spelling issues (#1883).
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
Diffstat (limited to 'src/modules/m_operlog.cpp')
-rw-r--r--src/modules/m_operlog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_operlog.cpp b/src/modules/m_operlog.cpp
index 388b0f607..ac3b6d467 100644
--- a/src/modules/m_operlog.cpp
+++ b/src/modules/m_operlog.cpp
@@ -53,8 +53,8 @@ class ModuleOperLog : public Module
if ((user->IsOper()) && (user->HasCommandPermission(command)))
{
- Command* thiscommand = ServerInstance->Parser.GetHandler(command);
- if ((thiscommand) && (thiscommand->flags_needed == 'o'))
+ Command* thiscmd = ServerInstance->Parser.GetHandler(command);
+ if ((thiscmd) && (thiscmd->flags_needed == 'o'))
{
std::string msg = "[" + user->GetFullRealHost() + "] " + command + " " + stdalgo::string::join(parameters);
if (tosnomask)