From: Yann Ylavic Date: Mon, 20 Feb 2017 16:55:50 +0000 (+0000) Subject: mpm_motorz: follow up to r1783772, with the real changes. X-Git-Tag: 2.5.0-alpha~633 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=45b1409887cc41f4a1366b187efbf2bcfe086997;p=apache mpm_motorz: follow up to r1783772, with the real changes. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1783782 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/motorz/motorz.c b/server/mpm/motorz/motorz.c index f048e246d7..3dea7fbe41 100644 --- a/server/mpm/motorz/motorz.c +++ b/server/mpm/motorz/motorz.c @@ -1680,12 +1680,12 @@ static int motorz_check_config(apr_pool_t *p, apr_pool_t *plog, if (thread_limit > MAX_THREAD_LIMIT) { if (startup) { - ap_log_error(APLOG_MARK, APLOG_WARNING | APLOG_STARTUP, 0, NULL, APLOGNO(00305) + ap_log_error(APLOG_MARK, APLOG_WARNING | APLOG_STARTUP, 0, NULL, APLOGNO(10015) "WARNING: ThreadLimit of %d exceeds compile-time " "limit of %d threads, decreasing to %d.", thread_limit, MAX_THREAD_LIMIT, MAX_THREAD_LIMIT); } else { - ap_log_error(APLOG_MARK, APLOG_WARNING, 0, s, APLOGNO(00306) + ap_log_error(APLOG_MARK, APLOG_WARNING, 0, s, APLOGNO(10016) "ThreadLimit of %d exceeds compile-time limit " "of %d, decreasing to match", thread_limit, MAX_THREAD_LIMIT); @@ -1694,11 +1694,11 @@ static int motorz_check_config(apr_pool_t *p, apr_pool_t *plog, } else if (thread_limit < 1) { if (startup) { - ap_log_error(APLOG_MARK, APLOG_WARNING | APLOG_STARTUP, 0, NULL, APLOGNO(00307) + ap_log_error(APLOG_MARK, APLOG_WARNING | APLOG_STARTUP, 0, NULL, APLOGNO(10017) "WARNING: ThreadLimit of %d not allowed, " "increasing to 1.", thread_limit); } else { - ap_log_error(APLOG_MARK, APLOG_WARNING, 0, s, APLOGNO(00308) + ap_log_error(APLOG_MARK, APLOG_WARNING, 0, s, APLOGNO(10018) "ThreadLimit of %d not allowed, increasing to 1", thread_limit); }