aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_tline.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_tline.cpp')
-rw-r--r--src/modules/m_tline.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/modules/m_tline.cpp b/src/modules/m_tline.cpp
index 744de774a..56705006f 100644
--- a/src/modules/m_tline.cpp
+++ b/src/modules/m_tline.cpp
@@ -29,7 +29,8 @@ class CommandTline final
: public Command
{
public:
- CommandTline(Module* Creator) : Command(Creator,"TLINE", 1)
+ CommandTline(Module* Creator)
+ : Command(Creator, "TLINE", 1)
{
access_needed = CmdAccess::OPERATOR;
syntax = { "<mask>" };
@@ -43,7 +44,7 @@ public:
for (const auto& [_, u] : ServerInstance->Users.GetUsers())
{
- if (InspIRCd::Match(u->GetFullRealHost(),parameters[0]))
+ if (InspIRCd::Match(u->GetFullRealHost(), parameters[0]))
{
n_matched++;
n_match_host++;