]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* Use s directly like in the other ap_log_error calls
authorRuediger Pluem <rpluem@apache.org>
Mon, 20 Jun 2022 07:14:05 +0000 (07:14 +0000)
committerRuediger Pluem <rpluem@apache.org>
Mon, 20 Jun 2022 07:14:05 +0000 (07:14 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1902081 13f79535-47bb-0310-9956-ffa450edef68

modules/http2/h2_workers.c

index a38b058de1deca74ba725a24dd9f3e4a84095a4c..a55d1a6167e16d17620ed426eb2efa668f51bffe 100644 (file)
@@ -454,7 +454,7 @@ h2_workers *h2_workers_create(server_rec *s, apr_pool_t *pchild,
     workers->idle_limit = (idle_limit > 0)? idle_limit : apr_time_from_sec(10);
     workers->dynamic = (workers->min_active < workers->max_slots);
 
-    ap_log_error(APLOG_MARK, APLOG_INFO, 0, workers->s,
+    ap_log_error(APLOG_MARK, APLOG_INFO, 0, s,
                  "h2_workers: created with min=%d max=%d idle_ms=%d",
                  workers->min_active, workers->max_slots,
                  (int)apr_time_as_msec(idle_limit));