diff options
| author | 2021-06-21 16:47:06 -0400 | |
|---|---|---|
| committer | 2021-06-21 21:47:06 +0100 | |
| commit | de6d4dbd1e8845e08c2d87cd89a919e5b21ba619 (patch) | |
| tree | f3c964db5830e7b15361889cd61daceabe3d7466 /src/modules/m_operlog.cpp | |
| parent | Update 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.cpp | 4 |
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) |
