From 81e4083efb18707e47299cfeb9524b240cae0e74 Mon Sep 17 00:00:00 2001 From: Olivier Houchard Date: Wed, 30 Apr 2025 18:22:46 +0200 Subject: [PATCH] BUILD/MEDIUM: quic: Make sure we build with recent changes TASK_IN_LIST has been changed to TASK_QUEUED, but one was missed in quic_conn.c, so fix that. --- src/quic_conn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quic_conn.c b/src/quic_conn.c index 51ace545f..882158c76 100644 --- a/src/quic_conn.c +++ b/src/quic_conn.c @@ -1865,7 +1865,7 @@ int qc_bind_tid_prep(struct quic_conn *qc, uint new_tid) } /* Reinit IO tasklet. */ - if (qc->wait_event.tasklet->state & TASK_IN_LIST) + if (qc->wait_event.tasklet->state & TASK_QUEUED) qc->flags |= QUIC_FL_CONN_IO_TO_REQUEUE; tasklet_kill(qc->wait_event.tasklet); /* In most cases quic_conn_app_io_cb is used but for 0-RTT quic_conn_io_cb can be still activated. */ -- 2.47.3