commit | eaad5cc2d83ddd2b1c3ea314cb7eba0d54e45b64 | [log] [tgz] |
---|---|---|
author | Emmanuel Hocdet <manu@gandi.net> | Fri Oct 25 12:19:00 2019 +0200 |
committer | William Lallemand <wlallemand@haproxy.org> | Thu Oct 31 17:24:16 2019 +0100 |
tree | 75d06b6926b33ec0669bd7b702ec22ed9d662137 | |
parent | 83cbd3c89fdea95d78f1d7fcf36a088599f3adfd [diff] |
MINOR: ssl: BoringSSL ocsp_response does not need issuer HAproxy can fail when issuer is not found, it must not with BoringSSL.
diff --git a/src/ssl_sock.c b/src/ssl_sock.c index 770216d..aaa8652 100644 --- a/src/ssl_sock.c +++ b/src/ssl_sock.c
@@ -3281,6 +3281,7 @@ } } +#ifndef OPENSSL_IS_BORINGSSL /* Useless for BoringSSL */ if (ckch->ocsp_response) { X509 *issuer; int i; @@ -3321,6 +3322,7 @@ } } } +#endif ret = 0;