From: Jeff Trawick Date: Fri, 20 May 2005 10:50:17 +0000 (+0000) Subject: The new function ap_logs_child_init() is intended for use X-Git-Tag: 2.1.5~87 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b5ed63df6080ab87bcf710a1d41cc84b75ad1fe2;p=apache The new function ap_logs_child_init() is intended for use only by the core server. Require CORE_PRIVATE to obtain the prototype. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@171093 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_log.h b/include/http_log.h index b6b5a7affb..8912beca0b 100644 --- a/include/http_log.h +++ b/include/http_log.h @@ -116,6 +116,8 @@ AP_DECLARE(apr_status_t) ap_replace_stderr_log(apr_pool_t *p, int ap_open_logs(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp, server_rec *s_main); +#ifdef CORE_PRIVATE + /** * Perform special processing for piped loggers in MPM child * processes. @@ -126,6 +128,8 @@ int ap_open_logs(apr_pool_t *pconf, apr_pool_t *plog, */ void ap_logs_child_init(apr_pool_t *p, server_rec *s); +#endif /* CORE_PRIVATE */ + /* * The primary logging functions, ap_log_error, ap_log_rerror, ap_log_cerror, * and ap_log_perror use a printf style format string to build the log message.