mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 06:40:33 -04:00
net/haproxy: Fix a stalled connection
This fix fixes a typo in It is a typo in the commit feca2a453 ("BUG/MINOR: filters: Always set FLT_END analyzer when CF_FLT_ANALYZE flag is set"). Patch was provided on haproxy mailinglist from Christopher Faulet. PR: 258896 Approved by: demon (maintainer)
This commit is contained in:
parent
48e692a2ed
commit
5e04d591a2
2 changed files with 12 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
PORTNAME= haproxy
|
PORTNAME= haproxy
|
||||||
DISTVERSION= 2.4.5
|
DISTVERSION= 2.4.5
|
||||||
|
PORTREVISION= 1
|
||||||
CATEGORIES= net www
|
CATEGORIES= net www
|
||||||
MASTER_SITES= http://www.haproxy.org/download/2.4/src/
|
MASTER_SITES= http://www.haproxy.org/download/2.4/src/
|
||||||
|
|
||||||
|
|
11
net/haproxy/files/patch-src_filters.c
Normal file
11
net/haproxy/files/patch-src_filters.c
Normal file
|
@ -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;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue