1
0
mirror of https://github.com/apache/httpd.git synced 2025-07-01 07:01:42 +03:00

don't use DOTALL from mod_substitute which leaves \n at the end of the line.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1873941 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eric Covener
2020-02-12 13:36:40 +00:00
parent 34ef2afa8c
commit b6dd2f55dc
5 changed files with 11 additions and 2 deletions

View File

@ -87,6 +87,8 @@ extern "C" {
#define AP_REG_DOLLAR_ENDONLY 0x200 /**< '$' matches at end of subject string only */
#define AP_REG_NO_DOTALL 0x400 /**< remove AP_REG_DOTALL from defaults */
#define AP_REG_MATCH "MATCH_" /**< suggested prefix for ap_regname */
#define AP_REG_DEFAULT (AP_REG_DOTALL|AP_REG_DOLLAR_ENDONLY)