From: Daniel Stenberg Date: Fri, 7 Dec 2001 15:56:57 +0000 (+0000) Subject: corrected the comment above gmtime_r X-Git-Tag: curl-7_9_3-pre1~61 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=47e67eab26c8d2702d254dcc7e7fa2c69228c32a;p=thirdparty%2Fcurl.git corrected the comment above gmtime_r --- diff --git a/lib/http.c b/lib/http.c index c0b9ce1d3c..f1d3fb326a 100644 --- a/lib/http.c +++ b/lib/http.c @@ -737,8 +737,6 @@ CURLcode Curl_http(struct connectdata *conn) #ifdef HAVE_GMTIME_R /* thread-safe version */ - /* We assume that the presense of localtime_r() proves the presense - of gmtime_r() which is a bit ugly but might work */ struct tm keeptime; thistime = (struct tm *)gmtime_r(&data->set.timevalue, &keeptime); #else