From: William A. Rowe Jr Date: Fri, 15 May 2009 20:20:43 +0000 (+0000) Subject: Fix docs and bump mmn minor X-Git-Tag: 2.3.3~563 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eda8eee6b8f41ef6cf6f44457a19448f25271dff;p=apache Fix docs and bump mmn minor git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@775312 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/ap_mmn.h b/include/ap_mmn.h index 90f85bba6b..e6f6858f92 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -193,6 +193,7 @@ * 20090401.0 (2.3.3-dev) Remove ap_threads_per_child, ap_max_daemons_limit, * ap_my_generation, etc. ap_mpm_query() can't be called * until after the register-hooks phase. + * 20090401.1 (2.3.3-dev) Protected log.c internals, http_log.h changes */ #define MODULE_MAGIC_COOKIE 0x41503234UL /* "AP24" */ @@ -200,7 +201,7 @@ #ifndef MODULE_MAGIC_NUMBER_MAJOR #define MODULE_MAGIC_NUMBER_MAJOR 20090401 #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 diff --git a/include/http_log.h b/include/http_log.h index bb7ebfd303..d406b811a8 100644 --- a/include/http_log.h +++ b/include/http_log.h @@ -272,7 +272,7 @@ typedef struct piped_log piped_log; * @param p The pool to allocate out of * @param program The program to run in the logging process * @return The piped log structure - * @tip The log program is invoked as APR_SHELLCMD_ENV, + * @tip The log program is invoked as APR_PROGRAM_ENV, * @see ap_open_piped_log_ex to modify this behavior */ AP_DECLARE(piped_log *) ap_open_piped_log(apr_pool_t *p, const char *program);