From f9f173dbb3b334401f580e8d4dbbb8947dc8af4f Mon Sep 17 00:00:00 2001 From: w00t Date: Tue, 28 Aug 2007 15:35:59 +0000 Subject: Hmm. We shouldn't use FindNick here, as that will find on UID, which while it should not be a problem, might be. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7949 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_spanningtree/treesocket2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/m_spanningtree/treesocket2.cpp b/src/modules/m_spanningtree/treesocket2.cpp index 17477a016..a8451610f 100644 --- a/src/modules/m_spanningtree/treesocket2.cpp +++ b/src/modules/m_spanningtree/treesocket2.cpp @@ -1489,7 +1489,7 @@ bool TreeSocket::ProcessLine(std::string &line) * already exist here. If it does, kill their copy, * and our copy. */ - userrec* x = this->Instance->FindNick(params[0]); + userrec* x = this->Instance->FindNickOnly(params[0]); if ((x) && (x != who)) { /* x is local, who is remote */ -- cgit v1.2.3