BUG/MINOR: mux-h2: Don't add ":status" pseudo-header on trailers
It is a cut-paste bug. Pseudo-header fields MUST NOT appear in trailers.
This patch must be backported to 1.9.
diff --git a/src/mux_h2.c b/src/mux_h2.c
index 9b50f7e..62b8b00 100644
--- a/src/mux_h2.c
+++ b/src/mux_h2.c
@@ -4933,13 +4933,6 @@
write_n32(outbuf.area + 5, h2s->id); // 4 bytes
outbuf.data = 9;
- /* encode status, which necessarily is the first one */
- if (!hpack_encode_int_status(&outbuf, h2s->status)) {
- if (b_space_wraps(&h2c->mbuf))
- goto realign_again;
- goto full;
- }
-
/* encode all headers */
for (idx = 0; idx < hdr; idx++) {
/* these ones do not exist in H2 or must not appear in