mirror of
https://github.com/curl/curl.git
synced 2026-08-25 10:33:31 +03:00
lib: fix compiler warnings after de4de4e3c7
Visual C++ now complains about implicitly casting time_t (64-bit) to long (32-bit). Fix this by changing some variables from long to time_t, or explicitly casting to long where the public interface would be affected. Closes #1131
This commit is contained in:
parent
0b8d682f81
commit
21aa32d30d
18 changed files with 54 additions and 54 deletions
12
lib/url.c
12
lib/url.c
|
|
@ -3021,8 +3021,8 @@ Curl_oldest_idle_connection(struct Curl_easy *data)
|
|||
struct curl_hash_iterator iter;
|
||||
struct curl_llist_element *curr;
|
||||
struct curl_hash_element *he;
|
||||
long highscore=-1;
|
||||
long score;
|
||||
time_t highscore=-1;
|
||||
time_t score;
|
||||
struct timeval now;
|
||||
struct connectdata *conn_candidate = NULL;
|
||||
struct connectbundle *bundle;
|
||||
|
|
@ -3071,8 +3071,8 @@ find_oldest_idle_connection_in_bundle(struct Curl_easy *data,
|
|||
struct connectbundle *bundle)
|
||||
{
|
||||
struct curl_llist_element *curr;
|
||||
long highscore=-1;
|
||||
long score;
|
||||
time_t highscore=-1;
|
||||
time_t score;
|
||||
struct timeval now;
|
||||
struct connectdata *conn_candidate = NULL;
|
||||
struct connectdata *conn;
|
||||
|
|
@ -3154,7 +3154,7 @@ static int call_disconnect_if_dead(struct connectdata *conn,
|
|||
static void prune_dead_connections(struct Curl_easy *data)
|
||||
{
|
||||
struct timeval now = Curl_tvnow();
|
||||
long elapsed = Curl_tvdiff(now, data->state.conn_cache->last_cleanup);
|
||||
time_t elapsed = Curl_tvdiff(now, data->state.conn_cache->last_cleanup);
|
||||
|
||||
if(elapsed >= 1000L) {
|
||||
Curl_conncache_foreach(data->state.conn_cache, data,
|
||||
|
|
@ -5537,7 +5537,7 @@ static CURLcode resolve_server(struct Curl_easy *data,
|
|||
bool *async)
|
||||
{
|
||||
CURLcode result=CURLE_OK;
|
||||
long timeout_ms = Curl_timeleft(data, NULL, TRUE);
|
||||
time_t timeout_ms = Curl_timeleft(data, NULL, TRUE);
|
||||
|
||||
/*************************************************************
|
||||
* Resolve the name of the server or proxy
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue