summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-05-12 17:19:30 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-05-12 17:19:30 +0200
commitd6c74ff663100d600a04debea35d0bc986adb213 (patch)
treeb33d3489924bf95d55353a25dfb8a17927f2e7e1
parent4cdb1be8246caefd0c0e777f6da4128d7f51b2a2 (diff)
downloadcurl-d6c74ff663100d600a04debea35d0bc986adb213.tar.gz
multi: remove leftover debug infof() calls from e9fd794a6
-rw-r--r--lib/multi.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/multi.c b/lib/multi.c
index 252cd2ae4..09be44396 100644
--- a/lib/multi.c
+++ b/lib/multi.c
@@ -2896,7 +2896,6 @@ multi_addtimeout(struct Curl_easy *data,
node->eid = eid; /* also marks it as in use */
n = Curl_llist_count(timeoutlist);
- infof(data, "TIMEOUTS %zd\n", n);
if(n) {
/* find the correct spot in the list */
for(e = timeoutlist->head; e; e = e->next) {
@@ -2940,8 +2939,6 @@ void Curl_expire(struct Curl_easy *data, time_t milli, expire_id id)
DEBUGASSERT(id < EXPIRE_LAST);
- infof(data, "EXPIRE in %d, id %d\n", (int)milli, id);
-
set = Curl_tvnow();
set.tv_sec += (long)(milli/1000);
set.tv_usec += (long)(milli%1000)*1000;