From fd79ddb2d64a61f8781af4518b30d22ca9f463da Mon Sep 17 00:00:00 2001 From: Amaury Denoyelle Date: Tue, 16 Aug 2022 11:13:45 +0200 Subject: [PATCH] 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. --- src/mux_quic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mux_quic.c b/src/mux_quic.c index 7b71ddb2c..2b53c0d8f 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) {