From: Willy Tarreau Date: Wed, 6 Aug 2025 14:25:00 +0000 (+0200) Subject: BUILD: fcgi: fix the struct name of fcgi_flt_ctx X-Git-Tag: v3.3-dev6~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b1f854bb2e857f03453a9c48bffa101dc16691c8;p=thirdparty%2Fhaproxy.git 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. --- diff --git a/src/fcgi-app.c b/src/fcgi-app.c index 8bddd1c29..ae3a79153 100644 --- a/src/fcgi-app.c +++ b/src/fcgi-app.c @@ -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;