aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/asn1/a_utctm.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_utctm.c
parent5612f93f3700af8e0b64341b636231522c7aa9cf (diff)
downloadopenssl-ce0d9f049a1cc054aec0c4da627156aee74b1d76.tar.gz
Some comments.
Submitted by: Reviewed by: PR:
Diffstat (limited to 'crypto/asn1/a_utctm.c')
-rw-r--r--crypto/asn1/a_utctm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/asn1/a_utctm.c b/crypto/asn1/a_utctm.c
index ebc6e384c1..557c1efb8e 100644
--- a/crypto/asn1/a_utctm.c
+++ b/crypto/asn1/a_utctm.c
@@ -177,7 +177,7 @@ ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t)
return(NULL);
#if defined(THREADS) && !defined(WIN32)
- gmtime_r(&t,&data);
+ gmtime_r(&t,&data); /* should return &data, but doesn't on some systems, so we don't even look at the return value */
ts=&data;
#else
ts=gmtime(&t);