aboutsummaryrefslogtreecommitdiffstats
path: root/lib/http_client.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2012-12-24 23:02:41 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2012-12-24 23:02:41 +0100
commitc1d9c952063904cc492d9538bdd8b75b20c41cd7 (patch)
treebee202119a8cf383e660385a9e536ac4f76a6aab /lib/http_client.c
parent9b672857d1d395307f1bfac988a347d724e13eee (diff)
Whoops, remove those debugging printfs as I intended to do before merging.
Diffstat (limited to 'lib/http_client.c')
-rw-r--r--lib/http_client.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/http_client.c b/lib/http_client.c
index e368c0dc..b384e1f0 100644
--- a/lib/http_client.c
+++ b/lib/http_client.c
@@ -1,7 +1,7 @@
/********************************************************************\
* BitlBee -- An IRC to other IM-networks gateway *
* *
- * Copyright 2002-2011 Wilmer van der Gaast and others *
+ * Copyright 2002-2012 Wilmer van der Gaast and others *
\********************************************************************/
/* HTTP(S) module */
@@ -577,7 +577,6 @@ void http_flush_bytes( struct http_request *req, size_t len )
if( req->reply_body - req->sbuf >= 512 )
{
- printf( "Wasting %ld bytes, cleaning up stream buffer\n", req->reply_body - req->sbuf );
char *new = g_memdup( req->reply_body, req->body_size + 1 );
g_free( req->sbuf );
req->reply_body = req->sbuf = new;