Change the format string from m (already taken) to M.

This commit is contained in:
ivanr 2010-02-02 12:45:28 +00:00
parent 4cd09b9daf
commit b8837bbfb2
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
1 Feb 2010 - trunk 1 Feb 2010 - trunk
------------------- -------------------
* Integrate with mod_log_config using the %{VARNAME}m format string. * Integrate with mod_log_config using the %{VARNAME}M format string.
(MODSEC-108) [Ivan Ristic] (MODSEC-108) [Ivan Ristic]
* Replaced the previous time-measuring mechanism with a new one, which * Replaced the previous time-measuring mechanism with a new one, which

View File

@ -456,7 +456,7 @@ static int hook_pre_config(apr_pool_t *mp, apr_pool_t *mp_log, apr_pool_t *mp_te
log_pfn_register = APR_RETRIEVE_OPTIONAL_FN(ap_register_log_handler); log_pfn_register = APR_RETRIEVE_OPTIONAL_FN(ap_register_log_handler);
if (log_pfn_register) { if (log_pfn_register) {
log_pfn_register(mp, "m", modsec_var_log_handler, 0); log_pfn_register(mp, "M", modsec_var_log_handler, 0);
} }
return OK; return OK;