Removed commented *printf and use quote_n() for quoting several args

This commit is contained in:
Saint Xavier 2008-08-15 15:15:42 +02:00
parent 5133d57366
commit 26a3eea8e2
3 changed files with 2 additions and 5 deletions

View File

@ -571,7 +571,6 @@ tag_handle_meta (int tagid, struct taginfo *tag, struct map_context *ctx)
if (!mcharset)
return;
/*logprintf (LOG_VERBOSE, "Meta tag charset : %s\n", quote (mcharset));*/
xfree_null (meta_charset);
meta_charset = mcharset;
}

View File

@ -1076,8 +1076,6 @@ for details.\n\n"));
if (opt.encoding_remote && !check_encoding_name (opt.encoding_remote))
opt.encoding_remote = NULL;
/*logprintf (LOG_VERBOSE, "Locale = %s\n", quote (opt.locale));*/
}
#else
if (opt.enable_iri || opt.locale || opt.encoding_remote)

View File

@ -115,8 +115,8 @@ url_enqueue (struct url_queue *queue, struct iri *i,
DEBUGP (("Queue count %d, maxcount %d.\n", queue->count, queue->maxcount));
if (i)
DEBUGP (("[IRI Enqueuing %s with %s\n", quote (url),
i->uri_encoding ? quote (i->uri_encoding) : "None"));
DEBUGP (("[IRI Enqueuing %s with %s\n", quote_n (0, url),
i->uri_encoding ? quote_n (1, i->uri_encoding) : "None"));
if (queue->tail)
queue->tail->next = qel;