1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

multi: remove leftover debug infof() calls from e9fd794a6

This commit is contained in:
Daniel Stenberg 2017-05-12 17:19:30 +02:00
parent 4cdb1be824
commit d6c74ff663

View File

@ -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;