Commit 81ee9362 authored by Joe Orton's avatar Joe Orton
Browse files

* 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
parent 85e7abe5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
        }