diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-06-22 20:24:11 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-06-22 20:24:11 +0000 |
commit | 03b03f7b60c984422fc9022d734a2a9657c1d0a0 (patch) | |
tree | fc980e5a41afd27452cfc2cb170e4f4a4794db65 | |
parent | a1b650ad7be4f8ec2fb486244f2f303434d43dfc (diff) |
remove annoying debug output
-rw-r--r-- | lib/transfer.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/transfer.c b/lib/transfer.c index 40af49cc0..703f408a2 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -379,7 +379,6 @@ CURLcode Curl_readwrite(struct connectdata *conn, /* receive data from the network! */ readrc = Curl_read(conn, conn->sockfd, k->buf, bytestoread, &nread); - DEBUGF(infof(data, "Read %ld bytes from stream (readrc = %d)\n", nread, readrc)); /* subzero, this would've blocked */ if(0 > readrc) break; /* get out of loop */ |