diff options
author | Attila Molnar <attilamolnar@hush.com> | 2016-08-30 16:33:46 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2016-08-30 16:33:46 +0200 |
commit | 6a35f493f316be130357dd2c75b64343a3aacdeb (patch) | |
tree | 3a481eb1ffff84f92e3e735d744a0b88c61e0963 /src/modules | |
parent | 1def7fd7f486d3d2d2999c4ee74392405db9ca7d (diff) |
Return std::string from Membership::GetAllPrefixChars()
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_check.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_check.cpp b/src/modules/m_check.cpp index 4330f410d..f4123466e 100644 --- a/src/modules/m_check.cpp +++ b/src/modules/m_check.cpp @@ -264,7 +264,7 @@ class CommandCheck : public Command */ const UserManager::CloneCounts& clonecount = ServerInstance->Users->GetCloneCounts(i->first); context.Write("member", InspIRCd::Format("%-3u %s%s (%s@%s) %s ", clonecount.global, - i->second->GetAllPrefixChars(), i->first->nick.c_str(), + i->second->GetAllPrefixChars().c_str(), i->first->nick.c_str(), i->first->ident.c_str(), i->first->dhost.c_str(), i->first->fullname.c_str())); } |