]> granicus.if.org Git - curl/commitdiff
Curl_readwrite: remove debug output
authorDaniel Stenberg <daniel@haxx.se>
Thu, 8 Nov 2012 09:47:11 +0000 (10:47 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 8 Nov 2012 09:47:11 +0000 (10:47 +0100)
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.

lib/transfer.c

index 3492efd25a8e77e6f1180feed2e48b857988ba5a..51b2f775cad8306cb72b1b079ea6914e9846b9fe 100644 (file)
@@ -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)) {