diff options
-rw-r--r-- | net/haproxy/Makefile | 1 | ||||
-rw-r--r-- | net/haproxy/files/patch-src_filters.c | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/net/haproxy/Makefile b/net/haproxy/Makefile index f4c8cfa8211b..98ac76fa0a15 100644 --- a/net/haproxy/Makefile +++ b/net/haproxy/Makefile @@ -2,6 +2,7 @@ PORTNAME= haproxy DISTVERSION= 2.4.5 +PORTREVISION= 1 CATEGORIES= net www MASTER_SITES= http://www.haproxy.org/download/2.4/src/ diff --git a/net/haproxy/files/patch-src_filters.c b/net/haproxy/files/patch-src_filters.c new file mode 100644 index 000000000000..c716fec434bc --- /dev/null +++ b/net/haproxy/files/patch-src_filters.c @@ -0,0 +1,11 @@ +--- src/filters.c.orig 2021-10-03 17:40:24 UTC ++++ src/filters.c +@@ -475,7 +475,7 @@ flt_stream_start(struct stream *s) + } + if (strm_li(s) && (strm_li(s)->analysers & AN_REQ_FLT_START_FE)) { + s->req.flags |= CF_FLT_ANALYZE; +- s->req.analysers |= AN_RES_FLT_END; ++ s->req.analysers |= AN_REQ_FLT_END; + } + return 0; + } |