From: Stefan Fritsch Date: Tue, 19 Apr 2011 21:01:52 +0000 (+0000) Subject: The pre_config hook should return int, not apr_status_t. X-Git-Tag: 2.3.12~41 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b510d8309867cbc8907ec35f85faf3234186937d;p=apache The pre_config hook should return int, not apr_status_t. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1095213 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/core.c b/server/core.c index b2cdfe0e35..b5c9905b8c 100644 --- a/server/core.c +++ b/server/core.c @@ -4153,7 +4153,7 @@ static int core_pre_config(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptem mpm_common_pre_config(pconf); - return APR_SUCCESS; + return OK; } static int core_post_config(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp, server_rec *s)