mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05:00
multi: remove leftover debug infof() calls from e9fd794a6
This commit is contained in:
parent
4cdb1be824
commit
d6c74ff663
@ -2896,7 +2896,6 @@ multi_addtimeout(struct Curl_easy *data,
|
|||||||
node->eid = eid; /* also marks it as in use */
|
node->eid = eid; /* also marks it as in use */
|
||||||
|
|
||||||
n = Curl_llist_count(timeoutlist);
|
n = Curl_llist_count(timeoutlist);
|
||||||
infof(data, "TIMEOUTS %zd\n", n);
|
|
||||||
if(n) {
|
if(n) {
|
||||||
/* find the correct spot in the list */
|
/* find the correct spot in the list */
|
||||||
for(e = timeoutlist->head; e; e = e->next) {
|
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);
|
DEBUGASSERT(id < EXPIRE_LAST);
|
||||||
|
|
||||||
infof(data, "EXPIRE in %d, id %d\n", (int)milli, id);
|
|
||||||
|
|
||||||
set = Curl_tvnow();
|
set = Curl_tvnow();
|
||||||
set.tv_sec += (long)(milli/1000);
|
set.tv_sec += (long)(milli/1000);
|
||||||
set.tv_usec += (long)(milli%1000)*1000;
|
set.tv_usec += (long)(milli%1000)*1000;
|
||||||
|
Loading…
Reference in New Issue
Block a user