From 100dfaa3f3785704d2df264e27ab698e27272687 Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Wed, 8 Jan 2020 23:53:06 -0500 Subject: [core] move plugin_ctx into (request_st *) NB: in the future, a separate plugin_ctx may be needed for connection-level plugins to keep state across multiple requests --- src/mod_fastcgi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mod_fastcgi.c') diff --git a/src/mod_fastcgi.c b/src/mod_fastcgi.c index 2e1a174a..873ed738 100644 --- a/src/mod_fastcgi.c +++ b/src/mod_fastcgi.c @@ -504,7 +504,7 @@ static handler_t fcgi_check_extension(connection *con, void *p_d, int uri_path_h if (HANDLER_GO_ON != rc) return rc; if (con->mode == p->id) { - handler_ctx *hctx = con->plugin_ctx[p->id]; + handler_ctx *hctx = con->request.plugin_ctx[p->id]; hctx->opts.backend = BACKEND_FASTCGI; hctx->opts.parse = fcgi_recv_parse; hctx->opts.pdata = hctx; -- cgit v1.2.1