]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/wildcard.cpp
Fix m_banredirect: (hint: sizeof(f) != sizeof(*f) ;p)
[user/henk/code/inspircd.git] / src / wildcard.cpp
index aaa619f2f226d60a3e76c5ae90d8c0a5a1e58a6f..29454108997a33430f5ae5f36702e84e64b3eab2 100644 (file)
@@ -11,6 +11,8 @@
  * ---------------------------------------------------
  */
 
+/* $Core: libIRCDwildcard */
+
 #include "inspircd.h"
 #include "hashcomp.h"
 #include "inspstring.h"
@@ -137,7 +139,8 @@ CoreExport bool match(bool case_sensitive, const char *str, const char *mask, bo
 {
        if (use_cidr_match && MatchCIDR(str, mask, true))
                return true;
-       return csmatch(str, mask);
+
+       return case_sensitive ? csmatch(str, mask) : match(str, mask);
 }
 
 CoreExport bool match(bool case_sensitive, const char *str, const char *mask)