]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
There was a missing colon on remote numeric 376. Spotted by Hal9000 of Denora.
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Fri, 3 Aug 2007 20:18:28 +0000 (20:18 +0000)
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Fri, 3 Aug 2007 20:18:28 +0000 (20:18 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7637 e03df62e-2008-0410-955e-edbf42e46eb7

src/modules/m_spanningtree/treesocket2.cpp

index a321ee36b6d8f83084724c9a3c0289674d72ca65..077350d20474e4d9142f4636454ad77387f43670 100644 (file)
@@ -142,7 +142,7 @@ bool TreeSocket::Motd(const std::string &prefix, std::deque<std::string> &params
                                        Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
                                }
 
-                               par[1] = std::string("::")+Instance->Config->ServerName+" 376 "+source->nick+" End of message of the day.";
+                               par[1] = std::string("::")+Instance->Config->ServerName+" 376 "+source->nick+" :End of message of the day.";
                                Utils->DoOneToOne(this->Instance->Config->ServerName, "PUSH",par, source->server);
                        }
                }