diff options
author | jcid <devnull@localhost> | 2008-09-29 01:04:50 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-09-29 01:04:50 +0200 |
commit | bc8c549e1036f6c1dd3f0fd526d790a6ada123a7 (patch) | |
tree | 5e8099de9bb310d5188807f739fe5b02889b652e /src/cache.c | |
parent | a5148a6be8e38918df3f919505305e73b2f59f2c (diff) |
- Removed the remaining DEBUG_MSG in src/
Diffstat (limited to 'src/cache.c')
-rw-r--r-- | src/cache.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/cache.c b/src/cache.c index dcc8802d..699faa3b 100644 --- a/src/cache.c +++ b/src/cache.c @@ -38,10 +38,7 @@ #define NULLKey 0 -#define DEBUG_LEVEL 5 -#include "debug.h" - -/* Maximun initial size for the automatically-growing data buffer */ +/* Maximum initial size for the automatically-growing data buffer */ #define MAX_INIT_BUF 1024*1024 /* Maximum filesize for a URL, before offering a download */ #define HUGE_FILESIZE 15*1024*1024 @@ -920,9 +917,9 @@ static int Cache_redirect(CacheEntry_t *entry, int Flags, BrowserWindow *bw) } else { /* Sub entity redirection (most probably an image) */ if (!entry->Data->len) { - DEBUG_MSG(3,">>>Image redirection without entity-content<<<\n"); + _MSG(">>>Image redirection without entity-content<<<\n"); } else { - DEBUG_MSG(3, ">>>Image redirection with entity-content<<<\n"); + _MSG(">>>Image redirection with entity-content<<<\n"); } } } |