From c6ca1cd62688c3a012b138ad33131a700fe7bbc5 Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 31 Aug 2008 11:33:11 +0000 Subject: Two fixes: First, change the error message for too few params for UID to now match the correct 11 params, and change the server name in remote kill to correctly show server name rather than sid git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10363 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_spanningtree/kill.cpp | 3 ++- src/modules/m_spanningtree/uid.cpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'src/modules/m_spanningtree') diff --git a/src/modules/m_spanningtree/kill.cpp b/src/modules/m_spanningtree/kill.cpp index b8413942d..93bed9bbe 100644 --- a/src/modules/m_spanningtree/kill.cpp +++ b/src/modules/m_spanningtree/kill.cpp @@ -35,7 +35,8 @@ bool TreeSocket::RemoteKill(const std::string &prefix, std::deque & /* Prepend kill source, if we don't have one */ if (*(params[1].c_str()) != '[') { - params[1] = "[" + prefix + "] Killed (" + params[1] +")"; + TreeServer* ts = Utils->FindServer(prefix); + params[1] = "[" + (ts ? ts->GetName() : prefix) + "] Killed (" + params[1] +")"; } std::string reason = params[1]; params[1] = ":" + params[1]; diff --git a/src/modules/m_spanningtree/uid.cpp b/src/modules/m_spanningtree/uid.cpp index 0c4564719..3e76c9725 100644 --- a/src/modules/m_spanningtree/uid.cpp +++ b/src/modules/m_spanningtree/uid.cpp @@ -40,7 +40,7 @@ bool TreeSocket::ParseUID(const std::string &source, std::deque &pa { if (!params.empty()) this->WriteLine(std::string(":")+this->Instance->Config->GetSID()+" KILL "+params[0]+" :Invalid client introduction ("+params[0]+" with only "+ - ConvToStr(params.size())+" of 10 parameters?)"); + ConvToStr(params.size())+" of 11 parameters?)"); return true; } -- cgit v1.2.3