diff options
author | Eric Covener <covener@apache.org> | 2020-02-12 14:36:40 +0100 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2020-02-12 14:36:40 +0100 |
commit | b6dd2f55dc8735ec09ed0830ba7ec78dd99cde7f (patch) | |
tree | c53be323d0e1a03d78978828123cc67b63d2e26d /include/ap_mmn.h | |
parent | Add a missing APLOGNO() (diff) | |
download | apache2-b6dd2f55dc8735ec09ed0830ba7ec78dd99cde7f.tar.xz apache2-b6dd2f55dc8735ec09ed0830ba7ec78dd99cde7f.zip |
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
Diffstat (limited to 'include/ap_mmn.h')
-rw-r--r-- | include/ap_mmn.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/ap_mmn.h b/include/ap_mmn.h index 5d1941228c..cff2ba7bda 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -620,6 +620,7 @@ * 20190312.6 (2.5.1-dev) Add proxy check_trans hook * 20190312.7 (2.5.1-dev) AP_REG_DEFAULT macro in ap_regex.h * 20190312.8 (2.5.1-dev) ap_is_chunked() in httpd.h + * 20190312.9 (2.5.1-dev) AP_REG_NO_DOTALL macro in ap_regex.h */ #define MODULE_MAGIC_COOKIE 0x41503235UL /* "AP25" */ @@ -627,7 +628,7 @@ #ifndef MODULE_MAGIC_NUMBER_MAJOR #define MODULE_MAGIC_NUMBER_MAJOR 20190312 #endif -#define MODULE_MAGIC_NUMBER_MINOR 8 /* 0...n */ +#define MODULE_MAGIC_NUMBER_MINOR 9 /* 0...n */ /** * Determine if the server's current MODULE_MAGIC_NUMBER is at least a |