Backport r8310 by hand

git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@8311 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
w00t 2007-10-23 10:20:29 +00:00
parent d528c5e9eb
commit 377d879f48

View File

@ -138,7 +138,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)