From aaea0c607470b9450036bb8b8b54d8d66982e29f Mon Sep 17 00:00:00 2001 From: Ruediger Pluem Date: Sun, 4 Nov 2007 11:20:11 +0000 Subject: [PATCH] * Use the same declaration for ap_time_process_request as in the header file. PR: 43789 Submitted by: Tom Donovan Reviewed by: rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@591760 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES | 5 ++++- server/scoreboard.c | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 8f49112554..33a7c635d7 100644 --- a/CHANGES +++ b/CHANGES @@ -2,10 +2,13 @@ Changes with Apache 2.3.0 [ When backported to 2.2.x, remove entry from this file ] + *) scoreboard: Correctly declare ap_time_process_request. + PR 43789 [Tom Donovan ] + *) mod_ldap: Give callers a reference to data copied into the request pool instead of references directly into the cache PR 43786 [Eric Covener] - + *) mod_ldap: Stop passing a reference to pconf around for (limited) use during request processing, avoiding possible memory corruption and crashes. [Eric Covener] diff --git a/server/scoreboard.c b/server/scoreboard.c index dd7de5563d..3b7b9a29fb 100644 --- a/server/scoreboard.c +++ b/server/scoreboard.c @@ -483,7 +483,7 @@ AP_DECLARE(int) ap_update_child_status(ap_sb_handle_t *sbh, int status, status, r); } -void ap_time_process_request(ap_sb_handle_t *sbh, int status) +AP_DECLARE(void) ap_time_process_request(ap_sb_handle_t *sbh, int status) { worker_score *ws; -- 2.40.0