mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-24 07:37:53 -04:00
BUILD: ssl: update types in wolfssl cert selection callback
The types have changed in the PR for the wolfSSL_get_sigalg_info() function, let's update them. Must be backported in 2.9.
This commit is contained in:
parent
c075e4f2fc
commit
dbe9cea35b
1 changed files with 2 additions and 2 deletions
|
|
@ -2859,8 +2859,8 @@ static int ssl_sock_switchctx_wolfSSL_cbk(WOLFSSL* ssl, void* arg)
|
|||
has_rsa_sig = 0;
|
||||
}
|
||||
for (idx = 0; idx < hashSigAlgoSz; idx += 2) {
|
||||
enum wc_HashType hashAlgo;
|
||||
enum Key_Sum sigAlgo;
|
||||
int hashAlgo;
|
||||
int sigAlgo;
|
||||
|
||||
wolfSSL_get_sigalg_info(hashSigAlgo[idx+0], hashSigAlgo[idx+1], &hashAlgo, &sigAlgo);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue