There was a missing colon on remote numeric 376. Spotted by Hal9000 of Denora.

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7637 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
w00t 2007-08-03 20:18:28 +00:00
parent 3110230083
commit a41cd7a0c2

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