]> git.ipfire.org Git - thirdparty/haproxy.git/commit
BUG/MINOR: ssl: bind_conf is uncorrectly accessed when using QUIC
authorWilliam Lallemand <wlallemand@haproxy.org>
Thu, 10 Nov 2022 15:45:24 +0000 (16:45 +0100)
committerWilliam Lallemand <wlallemand@haproxy.org>
Thu, 10 Nov 2022 15:56:21 +0000 (16:56 +0100)
commit4639689d89db2d18c4afbbe68e688a2b26b14b57
tree70ba6d760f68b0a82927e5add89af180b1253013
parent30fc6da148707055fcb6d1670217da6904364d1b
BUG/MINOR: ssl: bind_conf is uncorrectly accessed when using QUIC

Since commit 9b2598 ("BUG/MEDIUM: ssl: Verify error codes can exceed
63"), the ca_ignerr_bitfield and crt_ignerr_bietfield are incorrecly
accessed from __objt_listener(conn->target)->bind_conf which is not
avaiable from QUIC. The bind_conf variable was mistakenly replaced.

This patch fixes the issue by using again the bind_conf variable.

Must be backported where 9b2598 was backported.
src/ssl_sock.c