summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2009-02-11 15:33:06 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2009-02-11 15:33:06 +0000
commit6cc0050b4ef753e4c36445ad9757edbb7df7901e (patch)
treeee7ffb7f158fa9f0cb548b4c1e6cabfa5319a166 /src
parent7fc95ccfdc699330dd7548e8c9266303ab8bc6a9 (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')
-rw-r--r--src/modules/m_showwhois.cpp2
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);
}
}