mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2026-05-04 20:46:11 +02:00
BUILD: fcgi: fix the struct name of fcgi_flt_ctx
The struct was mistakenly spelled flt_fcgi_ctx() in fcgi_flt_stop()
when it was introduced in 2.1 with commit 78fbb9f991 ("MEDIUM:
fcgi-app: Add FCGI application and filter"), causing build issues
when trying to get the alignment of the object in pool_free() for
debugging purposes. No backport is needed as it's just used to convey
a pointer.
This commit is contained in:
parent
ffbb3cc306
commit
b1f854bb2e
@ -290,7 +290,7 @@ static int fcgi_flt_start(struct stream *s, struct filter *filter)
|
||||
|
||||
static void fcgi_flt_stop(struct stream *s, struct filter *filter)
|
||||
{
|
||||
struct flt_fcgi_ctx *fcgi_ctx = filter->ctx;
|
||||
struct fcgi_flt_ctx *fcgi_ctx = filter->ctx;
|
||||
|
||||
if (!fcgi_ctx)
|
||||
return;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user