]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUG/MINOR: proto_htx: Call the HTX version of the function managing client cookies
authorChristopher Faulet <cfaulet@haproxy.com>
Tue, 18 Dec 2018 15:41:31 +0000 (16:41 +0100)
committerChristopher Faulet <cfaulet@haproxy.com>
Wed, 19 Dec 2018 12:45:53 +0000 (13:45 +0100)
Because of a typo, the legacy version was called instead of the HTX one.

src/proto_htx.c

index b4bc3970dbec1df243fcc1dc929afd67708459da..86bf38eb9965ec59ad68c5eee8cf64aa45fe366a 100644 (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 */