[openssl] master update
dev at ddvo.net
dev at ddvo.net
Wed Oct 7 13:51:28 UTC 2020
The branch master has been updated
via bdde5b46c74852e38e660a16f64d7d8ba1c7c2e2 (commit)
from 1b4417abb89978af5b57c0ff68b02e439cd17a9a (commit)
- Log -----------------------------------------------------------------
commit bdde5b46c74852e38e660a16f64d7d8ba1c7c2e2
Author: Dr. David von Oheimb <David.von.Oheimb at siemens.com>
Date: Mon Oct 5 22:56:54 2020 +0200
ocsp.h: Fix backward compatibility declaration of OCSP_parse_url()
Reviewed-by: Matt Caswell <matt at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/13077)
-----------------------------------------------------------------------
Summary of changes:
include/openssl/ocsp.h.in | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/include/openssl/ocsp.h.in b/include/openssl/ocsp.h.in
index bf1e5a37fd..1a2fb93c4f 100644
--- a/include/openssl/ocsp.h.in
+++ b/include/openssl/ocsp.h.in
@@ -261,7 +261,8 @@ int OCSP_check_validity(ASN1_GENERALIZEDTIME *thisupd,
int OCSP_request_verify(OCSP_REQUEST *req, STACK_OF(X509) *certs,
X509_STORE *store, unsigned long flags);
-# define OCSP_parse_url OSSL_HTTP_parse_url /* for backward compatibility */
+# define OCSP_parse_url(url, host, port, path, ssl) \
+ OSSL_HTTP_parse_url(url, host, port, NULL, path, ssl) /* backward compat */
int OCSP_id_issuer_cmp(const OCSP_CERTID *a, const OCSP_CERTID *b);
int OCSP_id_cmp(const OCSP_CERTID *a, const OCSP_CERTID *b);
More information about the openssl-commits
mailing list