diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-02-11 15:33:06 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-02-11 15:33:06 +0000 |
commit | 6cc0050b4ef753e4c36445ad9757edbb7df7901e (patch) | |
tree | ee7ffb7f158fa9f0cb548b4c1e6cabfa5319a166 /src/modules/m_showwhois.cpp | |
parent | 7fc95ccfdc699330dd7548e8c9266303ab8bc6a9 (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/m_showwhois.cpp')
-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); } } |