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/vtls/gtls.c | |
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/vtls/gtls.c')
-rw-r--r-- | lib/vtls/gtls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/gtls.c b/lib/vtls/gtls.c index 0bd6c6528..9b4c3659a 100644 --- a/lib/vtls/gtls.c +++ b/lib/vtls/gtls.c @@ -235,7 +235,7 @@ static CURLcode handshake(struct connectdata *conn, what = Curl_socket_check(readfd, CURL_SOCKET_BAD, writefd, nonblocking?0: - timeout_ms?(time_t)timeout_ms:1000); + timeout_ms?timeout_ms:1000); if(what < 0) { /* fatal error */ failf(data, "select/poll on SSL socket, errno: %d", SOCKERRNO); |