We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2216b2 commit e978a30Copy full SHA for e978a30
standalone/regex.c
@@ -91,7 +91,7 @@ if (preg->re_pcre == NULL) return AP_REG_INVARG;
91
pcre2_pattern_info((const pcre2_code *)preg->re_pcre, PCRE2_INFO_CAPTURECOUNT, &nsub);
92
preg->re_nsub = nsub;
93
94
-#else
+#else // otherwise use PCRE
95
if ((cflags & AP_REG_ICASE) != 0) options |= PCRE_CASELESS;
96
if ((cflags & AP_REG_NEWLINE) != 0) options |= PCRE_MULTILINE;
97
0 commit comments