mirror of
https://github.com/haproxy/haproxy.git
synced 2026-05-28 04:12:17 -04:00
BUG/MINOR: quic: Fixe a typo in qc_idle_timer_task()
The & operator was confused with | operator :-(
This commit is contained in:
parent
287f32fd01
commit
ad9895d133
1 changed files with 1 additions and 1 deletions
|
|
@ -4559,7 +4559,7 @@ static struct task *qc_idle_timer_task(struct task *t, void *ctx, unsigned int s
|
|||
* a TLS alert was received from the TLS stack, this counter
|
||||
* has already been decremented.
|
||||
*/
|
||||
if (qc_state < QUIC_HS_ST_COMPLETE && !(qc_flags|QUIC_FL_CONN_TLS_ALERT))
|
||||
if (qc_state < QUIC_HS_ST_COMPLETE && !(qc_flags & QUIC_FL_CONN_TLS_ALERT))
|
||||
HA_ATOMIC_DEC(&prx_counters->conn_opening);
|
||||
|
||||
return NULL;
|
||||
|
|
|
|||
Loading…
Reference in a new issue