aboutsummaryrefslogtreecommitdiff
path: root/lib/multi.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/multi.c')
-rw-r--r--lib/multi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/multi.c b/lib/multi.c
index 2be553bdb..b57724e62 100644
--- a/lib/multi.c
+++ b/lib/multi.c
@@ -2141,7 +2141,7 @@ static CURLMcode multi_socket(struct Curl_multi *multi,
now.tv_usec += 40000; /* compensate for bad precision timers that might've
triggered too early */
- if(now.tv_usec > 1000000) {
+ if(now.tv_usec >= 1000000) {
now.tv_sec++;
now.tv_usec -= 1000000;
}
@@ -2573,7 +2573,7 @@ void Curl_expire(struct SessionHandle *data, long milli)
set.tv_sec += milli/1000;
set.tv_usec += (milli%1000)*1000;
- if(set.tv_usec > 1000000) {
+ if(set.tv_usec >= 1000000) {
set.tv_sec++;
set.tv_usec -= 1000000;
}