mirror of
https://github.com/curl/curl.git
synced 2026-04-15 07:51:42 +03:00
multi: convert two timeout variables to timediff_t
The time_t type is unsigned on some systems and these variables are used to hold return values from functions that return timediff_t already. timediff_t is always a signed type. Closes #3363
This commit is contained in:
parent
1568d710cd
commit
ecb2e194d4
1 changed files with 2 additions and 2 deletions
|
|
@ -1354,8 +1354,8 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
|||
CURLMcode rc;
|
||||
CURLcode result = CURLE_OK;
|
||||
struct SingleRequest *k;
|
||||
time_t timeout_ms;
|
||||
time_t recv_timeout_ms;
|
||||
timediff_t timeout_ms;
|
||||
timediff_t recv_timeout_ms;
|
||||
timediff_t send_timeout_ms;
|
||||
int control;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue