Hi, The attached patch fixes a typo in the code comments of the proto_htx subsystem.
Thanks, Joseph
From 7b57a0b375496c421c041cc48c6c35ef6117f57f Mon Sep 17 00:00:00 2001 From: Joseph Herlant <[email protected]> Date: Sun, 25 Nov 2018 11:00:25 -0800 Subject: [PATCH] CLEANUP: Fix a typo in the proto_htx subsystem Fixes a typo in the code comments of the proto_htx subsystem. --- src/proto_htx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto_htx.c b/src/proto_htx.c index 2cf4e11e..344127a4 100644 --- a/src/proto_htx.c +++ b/src/proto_htx.c @@ -4140,7 +4140,7 @@ static void htx_manage_client_side_cookies(struct stream *s, struct channel *req * - delete the complete cookie if we're in insert+indirect mode, so that * the server never sees it ; * - remove the server id from the cookie value, and tag the cookie as an - * application cookie so that it does not get accidently removed later, + * application cookie so that it does not get accidentally removed later, * if we're in cookie prefix mode */ if ((s->be->ck_opts & PR_CK_PFX) && (delim != val_end)) { -- 2.19.1

