diff options
| author | 2016-08-30 16:33:46 +0200 | |
|---|---|---|
| committer | 2016-08-30 16:33:46 +0200 | |
| commit | 6a35f493f316be130357dd2c75b64343a3aacdeb (patch) | |
| tree | 3a481eb1ffff84f92e3e735d744a0b88c61e0963 /src/modules/m_check.cpp | |
| parent | m_deaf Remove pointless member prefix check (diff) | |
| download | inspircd++-6a35f493f316be130357dd2c75b64343a3aacdeb.tar.gz inspircd++-6a35f493f316be130357dd2c75b64343a3aacdeb.tar.bz2 inspircd++-6a35f493f316be130357dd2c75b64343a3aacdeb.zip | |
Return std::string from Membership::GetAllPrefixChars()
Diffstat (limited to 'src/modules/m_check.cpp')
| -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())); } |
