Henrik van Ginhoven <[EMAIL PROTECTED]> writes:
> I believe there is a small mistake in wget 1.8, making -q ("no
> output") not work as expected:
>
> @verdandi src]$ ./wget -q www.gnu.org
> Converted www.gnu.org to http://www.gnu.org
That's a debugging message, which I forgot to remove. Thanks for the
report!
2001-12-09 Hrvoje Niksic <[EMAIL PROTECTED]>
* main.c (main): Remove stray debugging message.
Index: src/main.c
===================================================================
RCS file: /pack/anoncvs/wget/src/main.c,v
retrieving revision 1.66
diff -u -r1.66 main.c
--- src/main.c 2001/12/06 07:14:35 1.66
+++ src/main.c 2001/12/09 19:43:04
@@ -738,10 +738,7 @@
{
char *rewritten = rewrite_shorthand_url (argv[optind]);
if (rewritten)
- {
- printf ("Converted %s to %s\n", argv[optind], rewritten);
- url[i] = rewritten;
- }
+ url[i] = rewritten;
else
url[i] = xstrdup (argv[optind]);
}