From 01882c47bb851e08bc7ed425af7192785c3793f6 Mon Sep 17 00:00:00 2001 From: des Date: Sun, 9 Dec 2001 15:05:58 +0000 Subject: Conditionalize some debugging code that didn't use the DEBUG macro. MFC after: 1 week --- lib/libfetch/http.c | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'lib/libfetch/http.c') diff --git a/lib/libfetch/http.c b/lib/libfetch/http.c index d9fe15f..10c3a78 100644 --- a/lib/libfetch/http.c +++ b/lib/libfetch/http.c @@ -143,14 +143,16 @@ _http_new_chunk(struct cookie *c) c->chunksize = c->chunksize * 16 + 10 + tolower(*p) - 'a'; #ifndef NDEBUG - c->total += c->chunksize; - if (c->chunksize == 0) - fprintf(stderr, "\033[1m_http_fillbuf(): " - "end of last chunk\033[m\n"); - else - fprintf(stderr, "\033[1m_http_fillbuf(): " - "new chunk: %lu (%lu)\033[m\n", - (unsigned long)c->chunksize, (unsigned long)c->total); + if (fetchDebug) { + c->total += c->chunksize; + if (c->chunksize == 0) + fprintf(stderr, "\033[1m_http_fillbuf(): " + "end of last chunk\033[m\n"); + else + fprintf(stderr, "\033[1m_http_fillbuf(): " + "new chunk: %lu (%lu)\033[m\n", + (unsigned long)c->chunksize, (unsigned long)c->total); + } #endif return c->chunksize; -- cgit v1.1