mirror of
https://github.com/mirror/wget.git
synced 2025-01-19 08:40:36 +08:00
Removed commented *printf and use quote_n() for quoting several args
This commit is contained in:
parent
5133d57366
commit
26a3eea8e2
@ -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;
|
||||
}
|
||||
|
@ -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)
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user