From: Ruediger Pluem Date: Mon, 20 Jun 2022 07:14:05 +0000 (+0000) Subject: * Use s directly like in the other ap_log_error calls X-Git-Tag: 2.5.0-alpha2-ci-test-only~287 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13ed27e360f43fe25a6bad2f6efed53b53a96881;p=thirdparty%2Fapache%2Fhttpd.git * Use s directly like in the other ap_log_error calls git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1902081 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http2/h2_workers.c b/modules/http2/h2_workers.c index a38b058de1d..a55d1a6167e 100644 --- a/modules/http2/h2_workers.c +++ b/modules/http2/h2_workers.c @@ -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));