From: Joe Orton Date: Fri, 3 May 2019 09:07:32 +0000 (+0000) Subject: * modules/cache/mod_socache_shmcb.c (socache_shmcb_init): Describe X-Git-Tag: 2.5.0-alpha2-ci-test-only~2063 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc33262df27996f96d88fe0df28e068c494d2f1b;p=thirdparty%2Fapache%2Fhttpd.git * modules/cache/mod_socache_shmcb.c (socache_shmcb_init): Describe error better for anon shm failure case, fixing gcc 9 warning on passing NULL for '%s'. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1858565 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cache/mod_socache_shmcb.c b/modules/cache/mod_socache_shmcb.c index cb98dfa2368..d6be870f120 100644 --- a/modules/cache/mod_socache_shmcb.c +++ b/modules/cache/mod_socache_shmcb.c @@ -368,8 +368,8 @@ static apr_status_t socache_shmcb_init(ap_socache_instance_t *ctx, * above will return NULL for invalid paths. */ if (ctx->data_file == NULL) { ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, APLOGNO(00818) - "Could not use default path '%s' for shmcb socache", - ctx->data_file); + "Could not use anonymous shm for '%s' cache", + namespace); return APR_EINVAL; }