summaryrefslogtreecommitdiffstats
path: root/server/util_pcre.c
diff options
context:
space:
mode:
Diffstat (limited to 'server/util_pcre.c')
-rw-r--r--server/util_pcre.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/util_pcre.c b/server/util_pcre.c
index a7a00ffacc..5f781a46bd 100644
--- a/server/util_pcre.c
+++ b/server/util_pcre.c
@@ -164,16 +164,16 @@ AP_DECLARE(int) ap_regcomp_default_cflag_by_name(const char *name)
{
int cflag = 0;
- if (strcasecmp(name, "ICASE") == 0) {
+ if (ap_cstr_casecmp(name, "ICASE") == 0) {
cflag = AP_REG_ICASE;
}
- else if (strcasecmp(name, "DOTALL") == 0) {
+ else if (ap_cstr_casecmp(name, "DOTALL") == 0) {
cflag = AP_REG_DOTALL;
}
- else if (strcasecmp(name, "DOLLAR_ENDONLY") == 0) {
+ else if (ap_cstr_casecmp(name, "DOLLAR_ENDONLY") == 0) {
cflag = AP_REG_DOLLAR_ENDONLY;
}
- else if (strcasecmp(name, "EXTENDED") == 0) {
+ else if (ap_cstr_casecmp(name, "EXTENDED") == 0) {
cflag = AP_REG_EXTENDED;
}