aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/x509/x509cset.c
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2006-12-11 22:35:51 +0000
committerNils Larsch <nils@openssl.org>2006-12-11 22:35:51 +0000
commit91b73acb19653ab586b3fb66258b6892444050ec (patch)
treeb35d817dd1e233a94aca7bb3bb0630d4914b52dd /crypto/x509/x509cset.c
parent87d3af6475d663b317f6f5b57666cd70b327650f (diff)
downloadopenssl-91b73acb19653ab586b3fb66258b6892444050ec.tar.gz
use const ASN1_TIME *
Diffstat (limited to 'crypto/x509/x509cset.c')
-rw-r--r--crypto/x509/x509cset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/x509/x509cset.c b/crypto/x509/x509cset.c
index 9d1646d5c8..8800ad0064 100644
--- a/crypto/x509/x509cset.c
+++ b/crypto/x509/x509cset.c
@@ -81,7 +81,7 @@ int X509_CRL_set_issuer_name(X509_CRL *x, X509_NAME *name)
}
-int X509_CRL_set_lastUpdate(X509_CRL *x, ASN1_TIME *tm)
+int X509_CRL_set_lastUpdate(X509_CRL *x, const ASN1_TIME *tm)
{
ASN1_TIME *in;
@@ -99,7 +99,7 @@ int X509_CRL_set_lastUpdate(X509_CRL *x, ASN1_TIME *tm)
return(in != NULL);
}
-int X509_CRL_set_nextUpdate(X509_CRL *x, ASN1_TIME *tm)
+int X509_CRL_set_nextUpdate(X509_CRL *x, const ASN1_TIME *tm)
{
ASN1_TIME *in;