summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/wildcard.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wildcard.cpp b/src/wildcard.cpp
index f2e9d5e9f..65916d038 100644
--- a/src/wildcard.cpp
+++ b/src/wildcard.cpp
@@ -75,7 +75,7 @@ static bool match_internal(const unsigned char *str, const unsigned char *mask,
return !*wild;
}
-CoreExport bool Anope::Match(const std::string &str, const std::string &mask, bool case_sensitive = false)
+CoreExport bool Anope::Match(const std::string &str, const std::string &mask, bool case_sensitive)
{
- return match_internal(str.c_str(), mask.c_str(), case_sensitive);
+ return match_internal((const unsigned char *)str.c_str(), (const unsigned char *)mask.c_str(), case_sensitive);
}