aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2012-11-08 10:47:11 +0100
committerDaniel Stenberg <daniel@haxx.se>2012-11-08 10:47:11 +0100
commit7840c4c70cd2a7395bcb5b840f91d9e1ac707948 (patch)
treec40a269960d4fead93fc6089488000613e5b709c /lib
parent9096f4f451cc66cc7fcb5c1b3abfd2fe1bfc16c7 (diff)
Curl_readwrite: remove debug output
The text "additional stuff not fine" text was added for debug purposes a while ago, but it isn't really helping anyone and for some reason some Linux distributions provide their libcurls built with debug info still present and thus (far too many) users get to read this info.
Diffstat (limited to 'lib')
-rw-r--r--lib/transfer.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/transfer.c b/lib/transfer.c
index 3492efd25..51b2f775c 100644
--- a/lib/transfer.c
+++ b/lib/transfer.c
@@ -1030,12 +1030,6 @@ CURLcode Curl_readwrite(struct connectdata *conn,
if(result || *done)
return result;
}
- else if(k->keepon & KEEP_RECV) {
- DEBUGF(infof(data, "additional stuff not fine %s:%d: %d %d\n",
- __FILE__, __LINE__,
- select_res & CURL_CSELECT_IN,
- conn->bits.stream_was_rewound));
- }
/* If we still have writing to do, we check if we have a writable socket. */
if((k->keepon & KEEP_SEND) && (select_res & CURL_CSELECT_OUT)) {