aboutsummaryrefslogtreecommitdiff
path: root/lib/parsedate.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/parsedate.c')
-rw-r--r--lib/parsedate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/parsedate.c b/lib/parsedate.c
index 1d7f035f2..1e9381c7d 100644
--- a/lib/parsedate.c
+++ b/lib/parsedate.c
@@ -529,9 +529,9 @@ CURLcode Curl_gmtime(time_t intime, struct tm *store)
const struct tm *tm;
#ifdef HAVE_GMTIME_R
/* thread-safe version */
- tm = (struct tm *)(gmtime_r)(&intime, store);
+ tm = (struct tm *)gmtime_r(&intime, store);
#else
- tm = (gmtime)(&intime);
+ tm = gmtime(&intime);
if(tm)
*store = *tm; /* copy the pointed struct to the local copy */
#endif