Skip to content

Commit

Permalink
timeleft: made two more users of Curl_timeleft use timediff_t
Browse files Browse the repository at this point in the history
  • Loading branch information
bagder committed Oct 29, 2017
1 parent 1cb4f5d commit 7ee5951
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/connect.c
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ CURLcode Curl_is_connected(struct connectdata *conn,
{
struct Curl_easy *data = conn->data;
CURLcode result = CURLE_OK;
time_t allow;
timediff_t allow;
int error = 0;
struct curltime now;
int rc;
Expand Down
2 changes: 1 addition & 1 deletion lib/http_proxy.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ static CURLcode CONNECT(struct connectdata *conn,
CURLcode result;
curl_socket_t tunnelsocket = conn->sock[sockindex];
bool closeConnection = FALSE;
time_t check;
timediff_t check;
struct http_connect_state *s = conn->connect_state;

#define SELECT_OK 0
Expand Down

0 comments on commit 7ee5951

Please sign in to comment.