diff options
author | Graham Leggett <minfrin@apache.org> | 2020-07-03 10:29:56 +0200 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2020-07-03 10:29:56 +0200 |
commit | 06af945548afc700e18e60bfcf1cecbe31c62287 (patch) | |
tree | 56b4f3d8d9a50923340b371c02b5a66a63f1757f /include | |
parent | Be defensive when calculating the digest. Make sure the offset is initialised (diff) | |
download | apache2-06af945548afc700e18e60bfcf1cecbe31c62287.tar.xz apache2-06af945548afc700e18e60bfcf1cecbe31c62287.zip |
mod_dav: Allow other DAV modules to use dav_get_resource().
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1879466 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/ap_mmn.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/ap_mmn.h b/include/ap_mmn.h index 7e232a9206..8bf8ffc087 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -648,8 +648,9 @@ * 20200420.10 (2.5.1-dev) Add method_precondition hook to mod_dav.h. * 20200701.0 (2.5.1-dev) Axe ap_mpm_unregister_poll_callback() and * mpm_unregister_poll_callback hook. - * 20200702.0 (2.5.1-dev) Add pool arg to mpm_register_poll_callback and + * 20200702.1 (2.5.1-dev) Add pool arg to mpm_register_poll_callback and * mpm_register_poll_callback_timeout hooks + * 20200702.2 (2.5.1-dev) Add dav_get_resource(). */ #define MODULE_MAGIC_COOKIE 0x41503235UL /* "AP25" */ @@ -657,7 +658,7 @@ #ifndef MODULE_MAGIC_NUMBER_MAJOR #define MODULE_MAGIC_NUMBER_MAJOR 20200702 #endif -#define MODULE_MAGIC_NUMBER_MINOR 0 /* 0...n */ +#define MODULE_MAGIC_NUMBER_MINOR 2 /* 0...n */ /** * Determine if the server's current MODULE_MAGIC_NUMBER is at least a |