MINOR: h3: set CS_FL_NOT_FIRST

When creating a new conn-stream on H3 HEADERS parsing, the flag
CS_FL_NOT_FIRST must be set. This is identical to the mux-h2.
diff --git a/src/h3.c b/src/h3.c
index 6616db6..b6df430 100644
--- a/src/h3.c
+++ b/src/h3.c
@@ -207,6 +207,7 @@
 				htx->flags |= HTX_FL_EOM;
 
 			cs = cs_new(qcs->qcc->conn, qcs->qcc->conn->target);
+			cs->flags |= CS_FL_NOT_FIRST;
 			cs->ctx = qcs;
 			stream_create_from_cs(cs, &htx_buf);