X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fwildcard.cpp;h=0e6e8a874eaf4e3d6e309b1fe9ba0a51c3636137;hb=89f3c09b41409059237629abe5851b8ba6c55d13;hp=aaa619f2f226d60a3e76c5ae90d8c0a5a1e58a6f;hpb=4bbca0643b56f26f73a05462d226b2dd8871626b;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/wildcard.cpp b/src/wildcard.cpp index aaa619f2f..0e6e8a874 100644 --- a/src/wildcard.cpp +++ b/src/wildcard.cpp @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * InspIRCd: (C) 2002-2008 InspIRCd Development Team * See: http://www.inspircd.org/wiki/index.php/Credits * * This program is free but copyrighted software; see @@ -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)