From 6cc0050b4ef753e4c36445ad9757edbb7df7901e Mon Sep 17 00:00:00 2001 From: w00t Date: Wed, 11 Feb 2009 15:33:06 +0000 Subject: 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 --- src/modules/m_showwhois.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- cgit v1.2.3