diff options
author | Eric Covener <covener@apache.org> | 2017-05-26 23:29:59 +0200 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2017-05-26 23:29:59 +0200 |
commit | 92ab67cbad4e148c4ed97bba713e7b320a4412f9 (patch) | |
tree | 8ebe88999805856e23ea2f9ab0d768d69ea565a7 /include/ap_mmn.h | |
parent | mod_ssl: fix ctx passed to ssl_io_filter_error() (diff) | |
download | apache2-92ab67cbad4e148c4ed97bba713e7b320a4412f9.tar.xz apache2-92ab67cbad4e148c4ed97bba713e7b320a4412f9.zip |
core: deprecate and replace ap_get_basic_auth_pw
*) core: Deprecate ap_get_basic_auth_pw() and add
ap_get_basic_auth_components().
Submitted By: Emmanuel Dreyfus <manu netbsd.org>, Jacob Champion, Eric Covener
CVEID: CVE-2017-3167
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1796348 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/ap_mmn.h')
-rw-r--r-- | include/ap_mmn.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/ap_mmn.h b/include/ap_mmn.h index 0967996409..ca2484cf12 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -552,6 +552,8 @@ * 20161018.2 (2.5.0-dev) add ap_set_conn_count() * 20161018.3 (2.5.0-dev) add ap_exists_directive() * 20161018.4 (2.5.0-dev) Add taint to request_rec and ap_request_tainted() + * 20161018.5 (2.5.0-dev) Add ap_get_basic_auth_components() and deprecate + * ap_get_basic_auth_pw() */ #define MODULE_MAGIC_COOKIE 0x41503235UL /* "AP25" */ @@ -559,7 +561,7 @@ #ifndef MODULE_MAGIC_NUMBER_MAJOR #define MODULE_MAGIC_NUMBER_MAJOR 20161018 #endif -#define MODULE_MAGIC_NUMBER_MINOR 4 /* 0...n */ +#define MODULE_MAGIC_NUMBER_MINOR 5 /* 0...n */ /** * Determine if the server's current MODULE_MAGIC_NUMBER is at least a |