summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-11-18 13:04:08 +0000
committerRichard Levitte <levitte@openssl.org>2002-11-18 13:04:08 +0000
commit527497a7224644ab3dfb11a7ee6c3baf570092e6 (patch)
tree8aed1f0a52e92b1d83ac843d7ff6d14b75247f45 /crypto
parent32d21c1ef6806f0f83f1162cbe9664fa7fd1d963 (diff)
A variable of type time_t is supposed to be a time measurement starting at
Epoch. offset isn't such a measurement, so let's stop pretend it is.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/x509/x509_vfy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509/x509_vfy.c b/crypto/x509/x509_vfy.c
index db12f7bd35..552d1e7251 100644
--- a/crypto/x509/x509_vfy.c
+++ b/crypto/x509/x509_vfy.c
@@ -756,7 +756,7 @@ int X509_cmp_time(ASN1_TIME *ctm, time_t *cmp_time)
{
char *str;
ASN1_TIME atm;
- time_t offset;
+ long offset;
char buff1[24],buff2[24],*p;
int i,j;