| Index: openssl/crypto/x509/x509_set.c
|
| ===================================================================
|
| --- openssl/crypto/x509/x509_set.c (revision 105093)
|
| +++ openssl/crypto/x509/x509_set.c (working copy)
|
| @@ -104,7 +104,7 @@
|
| return(X509_NAME_set(&x->cert_info->subject,name));
|
| }
|
|
|
| -int X509_set_notBefore(X509 *x, ASN1_TIME *tm)
|
| +int X509_set_notBefore(X509 *x, const ASN1_TIME *tm)
|
| {
|
| ASN1_TIME *in;
|
|
|
| @@ -122,7 +122,7 @@
|
| return(in != NULL);
|
| }
|
|
|
| -int X509_set_notAfter(X509 *x, ASN1_TIME *tm)
|
| +int X509_set_notAfter(X509 *x, const ASN1_TIME *tm)
|
| {
|
| ASN1_TIME *in;
|
|
|
|
|