mirror of
https://github.com/znc/znc.git
synced 2026-08-06 08:52:57 +02:00
Use CString::Equals() everywhere.
* (CString::CaseCmp() == 0) became CString::Equals() * (CString::CaseCmp() != 0) became !CString::Equals() * replaced some occurrences of strn?casecmp git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1234 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
@@ -23,7 +23,7 @@ public:
|
||||
{
|
||||
for (MCString::iterator it = BeginNV(); it != EndNV(); it++)
|
||||
{
|
||||
if (sChannel.CaseCmp(it->first) == 0)
|
||||
if (sChannel.Equals(it->first))
|
||||
{
|
||||
CChan* pChan = m_pUser->FindChan(sChannel);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user