From 90e1a6905af29782c3bc7f106754d0908c074348 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 17 Aug 2005 09:11:27 +0000 Subject: [PATCH] remove the typecast to long from time_t, since we now store it as curl_off_t --- lib/cookie.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cookie.c b/lib/cookie.c index 0f6d681db..a8519c4e3 100644 --- a/lib/cookie.c +++ b/lib/cookie.c @@ -343,7 +343,7 @@ Curl_cookie_add(struct SessionHandle *data, badcookie = TRUE; break; } - co->expires = (long)curl_getdate(what, &now); + co->expires = curl_getdate(what, &now); } else if(!co->name) { co->name = strdup(name);