From: Christopher Faulet Date: Tue, 18 Dec 2018 15:41:31 +0000 (+0100) Subject: BUG/MINOR: proto_htx: Call the HTX version of the function managing client cookies X-Git-Tag: v1.9.0~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b6aadbd19ef33d375ea06079d7034c55b6f5eafc;p=thirdparty%2Fhaproxy.git BUG/MINOR: proto_htx: Call the HTX version of the function managing client cookies Because of a typo, the legacy version was called instead of the HTX one. --- diff --git a/src/proto_htx.c b/src/proto_htx.c index b4bc3970db..86bf38eb99 100644 --- a/src/proto_htx.c +++ b/src/proto_htx.c @@ -816,7 +816,7 @@ int htx_process_request(struct stream *s, struct channel *req, int an_bit) * This should only be performed in the backend. */ if (s->be->cookie_name || sess->fe->capture_name) - manage_client_side_cookies(s, req); + htx_manage_client_side_cookies(s, req); /* add unique-id if "header-unique-id" is specified */