corrected the comment above gmtime_r
authorDaniel Stenberg <daniel@haxx.se>
Fri, 7 Dec 2001 15:56:57 +0000 (15:56 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 7 Dec 2001 15:56:57 +0000 (15:56 +0000)
lib/http.c

index c0b9ce1..f1d3fb3 100644 (file)
@@ -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