projects
/
curl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aabe0a7
)
multi: remove verbose "Expire in" ... messages
author
Daniel Stenberg
<daniel@haxx.se>
Mon, 11 Feb 2019 21:57:33 +0000
(22:57 +0100)
committer
Daniel Stenberg
<daniel@haxx.se>
Tue, 12 Feb 2019 13:13:15 +0000
(14:13 +0100)
Reported-by: James Brown
Bug: https://curl.haxx.se/mail/archive-2019-02/0013.html
Closes #3558
lib/multi.c
patch
|
blob
|
history
diff --git
a/lib/multi.c
b/lib/multi.c
index 6b891620f61ce2df63a6adbd34743d9329a862ef..cd9d758ca4bc03730d03964174a1d85b130d419b 100644
(file)
--- a/
lib/multi.c
+++ b/
lib/multi.c
@@
-3032,9
+3032,6
@@
void Curl_expire(struct Curl_easy *data, time_t milli, expire_id id)
DEBUGASSERT(id < EXPIRE_LAST);
- infof(data, "Expire in %ld ms for %x (transfer %p)\n",
- (long)milli, id, data);
-
set = Curl_now();
set.tv_sec += milli/1000;
set.tv_usec += (unsigned int)(milli%1000)*1000;