From: danieldg Date: Tue, 9 Feb 2010 00:55:35 +0000 (+0000) Subject: Fix error message on OPTCOMMON mismatch X-Git-Tag: v2.0.23~1103 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=db790d9d1516c9c7cd48738340e5df1c8a2bebe3;p=user%2Fhenk%2Fcode%2Finspircd.git Fix error message on OPTCOMMON mismatch git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12403 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/modules/m_spanningtree/capab.cpp b/src/modules/m_spanningtree/capab.cpp index ffd7eb80f..80236c37e 100644 --- a/src/modules/m_spanningtree/capab.cpp +++ b/src/modules/m_spanningtree/capab.cpp @@ -219,7 +219,7 @@ bool TreeSocket::Capab(const parameterlist ¶ms) if (this->capab->OptModuleList != this->MyModules(VF_OPTCOMMON) && this->capab->OptModuleList.length()) { std::string diffIneed, diffUneed; - ListDifference(this->capab->ModuleList, this->MyModules(VF_OPTCOMMON), ' ', diffIneed, diffUneed); + ListDifference(this->capab->OptModuleList, this->MyModules(VF_OPTCOMMON), ' ', diffIneed, diffUneed); if (diffIneed.length() || diffUneed.length()) { if (Utils->AllowOptCommon)