diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-12-07 15:56:57 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-12-07 15:56:57 +0000 |
commit | 47e67eab26c8d2702d254dcc7e7fa2c69228c32a (patch) | |
tree | 99f238d58920054f87aea069f35c4b48518eb64e /lib | |
parent | 650b95045d0b02e1b53dcad3414d1dfde77f4e6b (diff) |
corrected the comment above gmtime_r
Diffstat (limited to 'lib')
-rw-r--r-- | lib/http.c | 2 |
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 |