remove the typecast to long from time_t, since we now store it as curl_off_t

This commit is contained in:
Daniel Stenberg 2005-08-17 09:11:27 +00:00
parent c36af24cbd
commit 90e1a6905a
1 changed files with 1 additions and 1 deletions

View File

@ -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);