diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-02-01 19:47:20 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-02-01 19:47:20 +0000 |
commit | 747dc02862b40c5902ccd760f96316cd06397b54 (patch) | |
tree | d2386a638d8860cfc8d6245b35c84606c5e070a0 /src | |
parent | 4981eab599095dfdb04d51f54ebe550e3b680e2f (diff) |
Spacify the oper name in STATS O
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12347 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/stats.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stats.cpp b/src/stats.cpp index ef708251f..df41d26da 100644 --- a/src/stats.cpp +++ b/src/stats.cpp @@ -288,7 +288,7 @@ void InspIRCd::DoStats(char statschar, User* user, string_list &results) if (mh && mh->NeedsOper() && tag->AllowedChanModes[c]) cmodes.push_back(c); } - results.push_back(sn+" 243 "+user->nick+" O"+tag->name + " " + umodes + " " + cmodes); + results.push_back(sn+" 243 "+user->nick+" O "+tag->NameStr() + " " + umodes + " " + cmodes); } } break; |