From e9a35ded8a3057bd3135aef61bbfec6f7296886b Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 26 Apr 2025 23:18:43 +0200 Subject: [PATCH] curl_osslq: remove a leftover debug fprintf() call Reported-by: xiadnoring on github Fixes #17198 Closes #17202 --- lib/vquic/curl_osslq.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/vquic/curl_osslq.c b/lib/vquic/curl_osslq.c index 72ee7d372f..7e718f090e 100644 --- a/lib/vquic/curl_osslq.c +++ b/lib/vquic/curl_osslq.c @@ -1493,8 +1493,6 @@ static bool cf_osslq_collect_block_send(unsigned int mid, void *val, if(stream && stream->s.ssl && stream->s.send_blocked) { struct Curl_easy *sdata = Curl_multi_get_easy(fctx->multi, mid); - fprintf(stderr, "[OSSLQ] stream %" FMT_PRId64 " sdata=%p\n", - stream->s.id, (void *)sdata); if(sdata) { ctx->poll_items[fctx->n].desc = SSL_as_poll_descriptor(stream->s.ssl); ctx->poll_items[fctx->n].events = SSL_POLL_EVENT_W; -- 2.47.3