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.
This commit is contained in:
Christopher Faulet 2018-12-18 16:41:31 +01:00
parent 2dba1a50c3
commit b6aadbd19e
1 changed files with 1 additions and 1 deletions

View File

@ -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 */