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.
This commit is contained in:
Olivier Houchard 2025-04-30 18:22:46 +02:00 committed by Olivier Houchard
parent b138eab302
commit 81e4083efb

View File

@ -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. */