diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-05-29 00:08:03 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-05-30 23:10:57 +0200 |
commit | 842f73de58f38bd6e285e08bbd1adb6c17cb62cd (patch) | |
tree | c28cb0b85895d71f19373ab732736a5fa671ebff /lib/vssh | |
parent | fc55c723c4ecebabf12c32caddd0f9bc9d169ed4 (diff) | |
download | curl-842f73de58f38bd6e285e08bbd1adb6c17cb62cd.tar.gz |
timeouts: change millisecond timeouts to timediff_t from time_t
For millisecond timers we like timediff_t better. Also, time_t can be
unsigned so returning a negative value doesn't work then.
Closes #5479
Diffstat (limited to 'lib/vssh')
-rw-r--r-- | lib/vssh/libssh2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vssh/libssh2.c b/lib/vssh/libssh2.c index 63663ec46..d54b4ca4b 100644 --- a/lib/vssh/libssh2.c +++ b/lib/vssh/libssh2.c @@ -2969,7 +2969,7 @@ static CURLcode ssh_block_statemach(struct connectdata *conn, fd_write = sock; /* wait for the socket to become ready */ (void)Curl_socket_check(fd_read, CURL_SOCKET_BAD, fd_write, - left>1000?1000:(time_t)left); + left>1000?1000:left); } #endif |