diff options
| author | 2009-02-11 15:33:06 +0000 | |
|---|---|---|
| committer | 2009-02-11 15:33:06 +0000 | |
| commit | 6cc0050b4ef753e4c36445ad9757edbb7df7901e (patch) | |
| tree | ee7ffb7f158fa9f0cb548b4c1e6cabfa5319a166 /src/modules | |
| parent | Someone forgot to git add. This is part of r11082 (add locate cjk-utf8) (diff) | |
Add a missing colon. Due to PUSH, it requires two here. Reported by Jobe, thanks! :)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11084 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/m_showwhois.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_showwhois.cpp b/src/modules/m_showwhois.cpp index 5be7c2614..2a7eeb00f 100644 --- a/src/modules/m_showwhois.cpp +++ b/src/modules/m_showwhois.cpp @@ -103,7 +103,7 @@ class ModuleShowwhois : public Module } else { - std::string msg = std::string(":") + dest->server + " NOTICE " + dest->nick + " :" + wmsg; + std::string msg = std::string("::") + dest->server + " NOTICE " + dest->nick + " :" + wmsg; ServerInstance->PI->PushToClient(dest, msg); } } |
