On 01/17/2006 09:55 PM, William A. Rowe, Jr. wrote:

[..cut..]

> Yet third party modules may be using this.  Since you wisely;
> 
> @@ -150,6 +151,9 @@
>      #define CACHE_IGNORE_HEADERS_SET   1
>      #define CACHE_IGNORE_HEADERS_UNSET 0
>      int ignore_headers_set;
> +    /* Minimum time to keep cached files in msecs */
> +    apr_time_t minex;
> +    int minex_set;
>  } cache_server_conf;
> 
> dropped these at the end of the cache_server_conf, the bump is minor (the

Thanks for clarification. So this is what needs to be done, right (Just
asking because it is my first bump :-))?

Index: include/ap_mmn.h
===================================================================
--- include/ap_mmn.h    (Revision 369902)
+++ include/ap_mmn.h    (Arbeitskopie)
@@ -112,8 +112,10 @@
  * 20051231.0 (2.3.0-dev) Added num_blank_lines, pending_header_line, and
  *                        pending_header_size to request_rec
  * 20060110.0 (2.3.0-dev) Conversion of Authz to be provider based
-                          addition of <SatisfyAll><SatisfyOne>
-                          removal of Satisfy, Allow, Deny, Order
+ *                        addition of <SatisfyAll><SatisfyOne>
+ *                        removal of Satisfy, Allow, Deny, Order
+ * 20060110.1 (2.3.0-dev) minex and minex_set members added to
+ *                        cache_server_conf (minor)
  */

 #define MODULE_MAGIC_COOKIE 0x41503234UL /* "AP24" */
@@ -121,7 +123,7 @@
 #ifndef MODULE_MAGIC_NUMBER_MAJOR
 #define MODULE_MAGIC_NUMBER_MAJOR 20060110
 #endif
-#define MODULE_MAGIC_NUMBER_MINOR 0                     /* 0...n */
+#define MODULE_MAGIC_NUMBER_MINOR 1                     /* 0...n */

 /**
  * Determine if the server's current MODULE_MAGIC_NUMBER is at least a

Regards

RĂ¼diger

Reply via email to