From: Christopher Faulet Date: Thu, 23 Apr 2026 07:42:17 +0000 (+0200) Subject: CLEANUP: htx: Fix typos in comments X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=e4c5862731bde60fc5f194d5204f24d0e553a1a4;p=thirdparty%2Fhaproxy.git CLEANUP: htx: Fix typos in comments Some minor typos in comments were fixed. --- diff --git a/src/htx.c b/src/htx.c index 295e46174..c045df766 100644 --- a/src/htx.c +++ b/src/htx.c @@ -821,10 +821,10 @@ size_t htx_xfer(struct htx *dst, struct htx *src, size_t count, unsigned int fla /* the last copied block is a start-line, a header or a trailer */ if (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL || type == HTX_BLK_HDR || type == HTX_BLK_TLR) { - /* cannot have partial headers or trailers part */ + /* cannot have partial headers or trailers part */ BUG_ON(blk == NULL); - /* Remove partial headers/trailers from and rollback on to not remove them later */ + /* Remove partial headers/trailers from and rollback on to not remove them later */ while (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL || type == HTX_BLK_HDR || type == HTX_BLK_TLR) { BUG_ON(type != htx_get_blk_type(blk)); ret -= sizeof(*blk) + htx_get_blksz(blk);