From: Amaury Denoyelle Date: Tue, 16 Aug 2022 09:13:45 +0000 (+0200) Subject: MINOR: mux-quic: adjust traces on stream init X-Git-Tag: v2.7-dev4~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd79ddb2d64a61f8781af4518b30d22ca9f463da;p=thirdparty%2Fhaproxy.git MINOR: mux-quic: adjust traces on stream init Adjust traces on qcc_init_stream_remote() : replace "opening" by "initializing" to avoid confusion with traces dealing with OPEN stream state. --- diff --git a/src/mux_quic.c b/src/mux_quic.c index 7b71ddb2c1..2b53c0d8f5 100644 --- a/src/mux_quic.c +++ b/src/mux_quic.c @@ -615,8 +615,8 @@ static struct qcs *qcc_init_stream_remote(struct qcc *qcc, uint64_t id) BUG_ON(id < *largest); while (id >= *largest) { - const char *str = *largest < id ? "opening intermediary stream" : - "opening remote stream"; + const char *str = *largest < id ? "initializing intermediary remote stream" : + "initializing remote stream"; qcs = qcs_new(qcc, *largest, type); if (!qcs) {