mirror of
https://github.com/haproxy/haproxy.git
synced 2026-03-09 17:40:49 -04:00
MINOR: ssl: BoringSSL ocsp_response does not need issuer
HAproxy can fail when issuer is not found, it must not with BoringSSL.
This commit is contained in:
parent
83cbd3c89f
commit
eaad5cc2d8
1 changed files with 2 additions and 0 deletions
|
|
@ -3281,6 +3281,7 @@ static int ssl_sock_load_files_into_ckch(const char *path, struct cert_key_and_c
|
|||
}
|
||||
}
|
||||
|
||||
#ifndef OPENSSL_IS_BORINGSSL /* Useless for BoringSSL */
|
||||
if (ckch->ocsp_response) {
|
||||
X509 *issuer;
|
||||
int i;
|
||||
|
|
@ -3321,6 +3322,7 @@ static int ssl_sock_load_files_into_ckch(const char *path, struct cert_key_and_c
|
|||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
ret = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue