diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_check.cpp | 4 | ||||
-rw-r--r-- | src/modules/m_sasl.cpp | 2 | ||||
-rw-r--r-- | src/modules/m_satopic.cpp | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/m_check.cpp b/src/modules/m_check.cpp index d6c17a37e..abbaaab8d 100644 --- a/src/modules/m_check.cpp +++ b/src/modules/m_check.cpp @@ -261,8 +261,8 @@ class CommandCheck : public Command for (Channel::MemberMap::const_iterator i = ulist.begin(); i != ulist.end(); ++i) { /* - * Unlike Asuka, I define a clone as coming from the same host. --w00t - */ + * Unlike Asuka, I define a clone as coming from the same host. --w00t + */ const UserManager::CloneCounts& clonecount = ServerInstance->Users->GetCloneCounts(i->first); context.Write("member", InspIRCd::Format("%u %s%s (%s)", clonecount.global, i->second->GetAllPrefixChars().c_str(), i->first->GetFullHost().c_str(), diff --git a/src/modules/m_sasl.cpp b/src/modules/m_sasl.cpp index 2647b63e1..0fb277b23 100644 --- a/src/modules/m_sasl.cpp +++ b/src/modules/m_sasl.cpp @@ -285,7 +285,7 @@ class SaslAuthenticator case SASL_OK: this->user->WriteNumeric(RPL_SASLSUCCESS, "SASL authentication successful"); break; - case SASL_ABORT: + case SASL_ABORT: this->user->WriteNumeric(ERR_SASLABORTED, "SASL authentication aborted"); break; case SASL_FAIL: diff --git a/src/modules/m_satopic.cpp b/src/modules/m_satopic.cpp index dc1e95488..15c8bfcb5 100644 --- a/src/modules/m_satopic.cpp +++ b/src/modules/m_satopic.cpp @@ -33,7 +33,7 @@ class CommandSATopic : public Command { /* * Handles a SATOPIC request. Notifies all +s users. - */ + */ Channel* target = ServerInstance->FindChan(parameters[0]); if(target) |