summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-02-11 22:57:33 +0100
committerDaniel Stenberg <daniel@haxx.se>2019-02-12 14:13:15 +0100
commitaabc7ae5ecf70973add429b5acbc86d6a57e4da5 (patch)
treefde1b9bef9caa7a4adda94c7a62607f372fce6eb
parentaabe0a73120366005589b1ef9024399ec50e68dd (diff)
downloadcurl-aabc7ae5ecf70973add429b5acbc86d6a57e4da5.tar.gz
multi: remove verbose "Expire in" ... messages
Reported-by: James Brown Bug: https://curl.haxx.se/mail/archive-2019-02/0013.html Closes #3558
-rw-r--r--lib/multi.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/multi.c b/lib/multi.c
index 6b891620f..cd9d758ca 100644
--- 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;