From: Guido Vranken Date: Sat, 11 Feb 2017 21:41:38 +0000 (+0100) Subject: Remove obsolete comment X-Git-Tag: OpenSSL_1_1_1-pre1~2401 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7c120357e5ef434c8a7d1d1c3ba4f2a33266374e;p=oweals%2Fopenssl.git Remove obsolete comment Reviewed-by: Richard Levitte Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/1613) --- 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;