diff options
author | Ian Holsman <ianh@apache.org> | 2003-02-14 05:17:34 +0100 |
---|---|---|
committer | Ian Holsman <ianh@apache.org> | 2003-02-14 05:17:34 +0100 |
commit | 7f5768e1876c8e0b8b0b319f273727ecfac3803a (patch) | |
tree | 5a6599fe12ef8183582883f4769d3e5927b0b674 /include | |
parent | people often assume that their Aliases will be found by "best match" rather (diff) | |
download | apache2-7f5768e1876c8e0b8b0b319f273727ecfac3803a.tar.xz apache2-7f5768e1876c8e0b8b0b319f273727ecfac3803a.zip |
change optional function to return the previous writer, allowing to have mutliple types
of writers in the same server. (previously you could only have one)
it needs a mmn bump.. sorry guys
;(
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98648 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-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 54a2d06828..84744b8035 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -112,12 +112,13 @@ * 20020628 (2.0.40-dev) Added filter_init to filter registration functions * 20020903 (2.0.41-dev) APR's error constants changed * 20020903.1 (2.1.0-dev) allow_encoded_slashes added to core_dir_config + * 20030213.1 (2.1.0-dev) changed log_writer optional fn's to return previous handler */ #define MODULE_MAGIC_COOKIE 0x41503230UL /* "AP20" */ #ifndef MODULE_MAGIC_NUMBER_MAJOR -#define MODULE_MAGIC_NUMBER_MAJOR 20020903 +#define MODULE_MAGIC_NUMBER_MAJOR 20030213 #endif #define MODULE_MAGIC_NUMBER_MINOR 1 /* 0...n */ |