diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/cache.c | 2 | ||||
-rw-r--r-- | src/html.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cache.c b/src/cache.c index ade2bd6a..8e33a6c6 100644 --- a/src/cache.c +++ b/src/cache.c @@ -875,7 +875,7 @@ static void Cache_process_queue(CacheEntry_t *entry) if (!(entry->Flags & CA_GotContentType)) { st = a_Misc_get_content_type_from_data( entry->Data->str, entry->Data->len, &Type); - MSG("Cache: detected Content-Type '%s'\n", Type); + _MSG("Cache: detected Content-Type '%s'\n", Type); if (st == 0 || entry->Flags & CA_GotData) { if (a_Misc_content_type_check(entry->TypeHdr, Type) < 0) { MSG_HTTP("Content-Type '%s' doesn't match the real data.\n", diff --git a/src/html.cc b/src/html.cc index f65e3d18..acacc5fc 100644 --- a/src/html.cc +++ b/src/html.cc @@ -773,7 +773,7 @@ DilloHtml::DilloHtml(BrowserWindow *p_bw, const DilloUrl *url, Local_Buf = dStr_new(""); Local_Ofs = 0; - MSG("HTML content type: %s\n", content_type); + MSG("DilloHtml(): content type: %s\n", content_type); this->content_type = dStrdup(content_type); /* get charset */ |