summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2018-06-01 12:55:41 +0200
committerDaniel Stenberg <daniel@haxx.se>2018-06-01 12:55:41 +0200
commit923ce4a5909aa7ef1379aa93c6eabcc9a225dd4e (patch)
treead18900cb7e1f3df9fb321c555bc840960bcbdb2
parentf66d97b677d114733f6b938d54ce7502d6aff214 (diff)
downloadcurl-923ce4a5909aa7ef1379aa93c6eabcc9a225dd4e.tar.gz
multi: remove a DEBUGF()
... it might call infof() with a NULL first argument that isn't harmful but makes it not do anything. The infof() line is not very useful anymore, it has served it purpose. Good riddance! Fixes #2627
-rw-r--r--lib/multi.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/multi.c b/lib/multi.c
index d48eed4e5..be926ae92 100644
--- a/lib/multi.c
+++ b/lib/multi.c
@@ -1083,8 +1083,6 @@ CURLMcode curl_multi_wait(struct Curl_multi *multi,
int pollrc;
/* wait... */
pollrc = Curl_poll(ufds, nfds, timeout_ms);
- DEBUGF(infof(data, "Curl_poll(%u ds, %d ms) == %d\n",
- nfds, timeout_ms, pollrc));
if(pollrc > 0) {
retcode = pollrc;