1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 17:36:38 +02:00

Made the oper:name config option case insensitive

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2971 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Adam-
2010-05-21 06:46:52 +00:00
parent 6fb5ca2315
commit 9b06dc5046
+1 -1
View File
@@ -57,7 +57,7 @@ NickAlias::NickAlias(const std::string &nickname, NickCore *nickcore)
{
if (nc->ot)
break;
if (it->first != this->nick)
if (!stricmp(it->first.c_str(), this->nick))
continue;
for (std::list<OperType *>::iterator tit = Config.MyOperTypes.begin(); tit != Config.MyOperTypes.end(); tit++)