summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-12-07 15:56:57 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-12-07 15:56:57 +0000
commit47e67eab26c8d2702d254dcc7e7fa2c69228c32a (patch)
tree99f238d58920054f87aea069f35c4b48518eb64e
parent650b95045d0b02e1b53dcad3414d1dfde77f4e6b (diff)
downloadgnurl-47e67eab26c8d2702d254dcc7e7fa2c69228c32a.tar.gz
gnurl-47e67eab26c8d2702d254dcc7e7fa2c69228c32a.tar.bz2
gnurl-47e67eab26c8d2702d254dcc7e7fa2c69228c32a.zip
corrected the comment above gmtime_r
-rw-r--r--lib/http.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/http.c b/lib/http.c
index c0b9ce1d3..f1d3fb326 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