BUG/MEDIUM: mux-h2: don't lose the first response header in HTX mode
When converting response headers from HTX to H2, we accidently skipped
the first header block.
diff --git a/src/mux_h2.c b/src/mux_h2.c
index 480450e..bd329cc 100644
--- a/src/mux_h2.c
+++ b/src/mux_h2.c
@@ -3613,7 +3613,7 @@
/* and the rest of the headers, that we dump starting at header 0 */
hdr = 0;
- idx = htx_get_next(htx, htx->sl_off);
+ idx = htx->sl_off;
while ((idx = htx_get_next(htx, idx)) != -1) {
blk = htx_get_blk(htx, idx);
type = htx_get_blk_type(blk);