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
This commit is contained in:
w00t 2009-02-11 15:33:06 +00:00
parent 7fc95ccfdc
commit 6cc0050b4e

View File

@ -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);
}
}