mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
Mods: use case-insensitive wildcmp() for channel/host matching
Fixes #822
This commit is contained in:
@@ -33,7 +33,7 @@ public:
|
||||
void SetEnabled(bool bEnabled) { m_bEnabled = bEnabled; }
|
||||
|
||||
bool Compare(const CString& sTarget) const {
|
||||
return sTarget.WildCmp(m_sRule);
|
||||
return sTarget.WildCmp(m_sRule, CString::CaseInsensitive);
|
||||
}
|
||||
|
||||
bool operator==(const CLogRule& sOther) const {
|
||||
|
||||
Reference in New Issue
Block a user