summaryrefslogtreecommitdiff
path: root/lib/libcrypto/ocsp/ocsp_lib.c
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2018-05-13 10:30:53 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2018-05-13 10:30:53 +0000
commit7a8af8f5285fb428ded7119abd3877b114bb2c38 (patch)
tree78958573040814f4afc7f0fb12738b894aedc600 /lib/libcrypto/ocsp/ocsp_lib.c
parentdf9076f5a56a9c4af2ff40c87162d3e297df4fae (diff)
Add const qualifier to the X509_NAME *, ASN1_BIT_STRING *, and
ASN1_INTEGER * arguments of OCSP_cert_id_new(3). tested in a bulk build by sthen ok jsing (as part of a larger diff)
Diffstat (limited to 'lib/libcrypto/ocsp/ocsp_lib.c')
-rw-r--r--lib/libcrypto/ocsp/ocsp_lib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/ocsp/ocsp_lib.c b/lib/libcrypto/ocsp/ocsp_lib.c
index d56a0020964..f9a8d60bc10 100644
--- a/lib/libcrypto/ocsp/ocsp_lib.c
+++ b/lib/libcrypto/ocsp/ocsp_lib.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ocsp_lib.c,v 1.20 2017/01/29 17:49:23 beck Exp $ */
+/* $OpenBSD: ocsp_lib.c,v 1.21 2018/05/13 10:30:52 tb Exp $ */
/* Written by Tom Titchener <Tom_Titchener@groove.net> for the OpenSSL
* project. */
@@ -99,8 +99,8 @@ OCSP_cert_to_id(const EVP_MD *dgst, X509 *subject, X509 *issuer)
}
OCSP_CERTID *
-OCSP_cert_id_new(const EVP_MD *dgst, X509_NAME *issuerName,
- ASN1_BIT_STRING* issuerKey, ASN1_INTEGER *serialNumber)
+OCSP_cert_id_new(const EVP_MD *dgst, const X509_NAME *issuerName,
+ const ASN1_BIT_STRING *issuerKey, const ASN1_INTEGER *serialNumber)
{
int nid;
unsigned int i;