summaryrefslogtreecommitdiffstats
path: root/crypto/o_time.c
diff options
context:
space:
mode:
authorGuido Vranken <guidovranken@gmail.com>2017-02-11 22:41:38 +0100
committerRich Salz <rsalz@openssl.org>2017-02-14 14:52:24 -0500
commit7c120357e5ef434c8a7d1d1c3ba4f2a33266374e (patch)
treec635bec762e1fc1383b87823ef4014137f0ffaba /crypto/o_time.c
parent873019f2c3d5d19f761b0f6e8dbc8d439345fd6f (diff)
Remove obsolete comment
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1613)
Diffstat (limited to 'crypto/o_time.c')
-rwxr-xr-xcrypto/o_time.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/crypto/o_time.c b/crypto/o_time.c
index bf74150f33..4b902e09ac 100755
--- a/crypto/o_time.c
+++ b/crypto/o_time.c
@@ -52,10 +52,6 @@ struct tm *OPENSSL_gmtime(const time_t *timer, struct tm *result)
struct tm *ts = NULL;
#if defined(OPENSSL_THREADS) && !defined(OPENSSL_SYS_WIN32) && (!defined(OPENSSL_SYS_VMS) || defined(gmtime_r)) && !defined(OPENSSL_SYS_MACOSX)
- /*
- * should return &data, but doesn't on some systems, so we don't even
- * look at the return value
- */
if (gmtime_r(timer, result) == NULL)
return NULL;
ts = result;