Skip to content

Commit

Permalink
Fix compilation of nginx module (Bug #312) (#320)
Browse files Browse the repository at this point in the history
A bug was introduced by me at ac2ac10
  • Loading branch information
marisn committed Sep 27, 2023
1 parent 9f4cf0e commit 64da616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nginx/ngx_http_mapcache_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ ngx_http_mapcache(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, "no mapcache <service>s configured/enabled, no point in continuing.");
return NGX_CONF_ERROR;
}
mapcache_cache_child_init(ctx,ctx->cfg,ctx->pool);
mapcache_cache_child_init(ctx,ctx->config,ctx->pool);
if(GC_HAS_ERROR(ctx)) {
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,ctx->get_error_message(ctx));
return NGX_CONF_ERROR;
Expand Down

0 comments on commit 64da616

Please sign in to comment.