]> granicus.if.org Git - apache/commitdiff
mpm_motorz: follow up to r1783772, with the real changes.
authorYann Ylavic <ylavic@apache.org>
Mon, 20 Feb 2017 16:55:50 +0000 (16:55 +0000)
committerYann Ylavic <ylavic@apache.org>
Mon, 20 Feb 2017 16:55:50 +0000 (16:55 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1783782 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/motorz/motorz.c

index f048e246d7a8394ac83ae339e428e131499688b5..3dea7fbe41d487b07c605c1aecb3cc824472a13b 100644 (file)
@@ -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);
         }