summaryrefslogtreecommitdiffstats
path: root/crypto/asn1/a_time.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-05-06 23:36:54 +0000
committerBodo Möller <bodo@openssl.org>1999-05-06 23:36:54 +0000
commitce0d9f049a1cc054aec0c4da627156aee74b1d76 (patch)
treedc49f6f57a877b5f1401385d91a1d307e1022426 /crypto/asn1/a_time.c
parent5612f93f3700af8e0b64341b636231522c7aa9cf (diff)
Some comments.
Submitted by: Reviewed by: PR:
Diffstat (limited to 'crypto/asn1/a_time.c')
-rw-r--r--crypto/asn1/a_time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/asn1/a_time.c b/crypto/asn1/a_time.c
index 848688b7db..c19b7b2cac 100644
--- a/crypto/asn1/a_time.c
+++ b/crypto/asn1/a_time.c
@@ -98,7 +98,7 @@ ASN1_TIME *ASN1_TIME_set(ASN1_TIME *s, time_t t)
#if defined(THREADS) && !defined(WIN32)
gmtime_r(&t,&data);
- ts=&data;
+ ts=&data; /* should return &data, but doesn't on some systems, so we don't even look at the return value */
#else
ts=gmtime(&t);
#endif