From 67302ade22b99eaa42031016d4861068b0681db3 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Mon, 1 Aug 2016 19:25:16 +0100 Subject: [PATCH 1/1] Constify some X509_CRL functions. Reviewed-by: Rich Salz --- crypto/x509/x509cset.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crypto/x509/x509cset.c b/crypto/x509/x509cset.c index 3763492510..1498054c09 100644 --- a/crypto/x509/x509cset.c +++ b/crypto/x509/x509cset.c @@ -95,22 +95,22 @@ int X509_CRL_up_ref(X509_CRL *crl) return ((i > 1) ? 1 : 0); } -long X509_CRL_get_version(X509_CRL *crl) +long X509_CRL_get_version(const X509_CRL *crl) { return ASN1_INTEGER_get(crl->crl.version); } -ASN1_TIME *X509_CRL_get_lastUpdate(X509_CRL *crl) +ASN1_TIME *X509_CRL_get_lastUpdate(const X509_CRL *crl) { return crl->crl.lastUpdate; } -ASN1_TIME *X509_CRL_get_nextUpdate(X509_CRL *crl) +ASN1_TIME *X509_CRL_get_nextUpdate(const X509_CRL *crl) { return crl->crl.nextUpdate; } -X509_NAME *X509_CRL_get_issuer(X509_CRL *crl) +X509_NAME *X509_CRL_get_issuer(const X509_CRL *crl) { return crl->crl.issuer; } -- 2.34.1