]> sjero.net Git - wget/commitdiff
Removed commented *printf and use quote_n() for quoting several args
authorSaint Xavier <wget@sxav.eu>
Fri, 15 Aug 2008 13:15:42 +0000 (15:15 +0200)
committerSaint Xavier <wget@sxav.eu>
Fri, 15 Aug 2008 13:15:42 +0000 (15:15 +0200)
src/html-url.c
src/main.c
src/recur.c

index cbaffb25cb4550e3040fb2644663f566e40f4211..c954cb97191b83f87b27a149696c1bcb66982001 100644 (file)
@@ -571,7 +571,6 @@ tag_handle_meta (int tagid, struct taginfo *tag, struct map_context *ctx)
       if (!mcharset)
         return;
 
       if (!mcharset)
         return;
 
-      /*logprintf (LOG_VERBOSE, "Meta tag charset : %s\n", quote (mcharset));*/
       xfree_null (meta_charset);
       meta_charset = mcharset;
     }
       xfree_null (meta_charset);
       meta_charset = mcharset;
     }
index c080394e16e62345f82be82f594a8659373a0ce5..414b62bc30995ea03a8cc5349bfd778478690df0 100644 (file)
@@ -1076,8 +1076,6 @@ for details.\n\n"));
 
       if (opt.encoding_remote && !check_encoding_name (opt.encoding_remote))
         opt.encoding_remote = NULL;
 
       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)
     }
 #else
   if (opt.enable_iri || opt.locale || opt.encoding_remote)
index a0bb86818d28bd53fbbd6882ee876a9a7f970e6b..786824583c1553fd66254ac3c4fae055f8799e56 100644 (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 (("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;
 
   if (queue->tail)
     queue->tail->next = qel;