1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00
This commit is contained in:
Micah Cowan 2009-03-01 02:57:14 -08:00
commit 4092d7eedc
2 changed files with 18 additions and 3 deletions

View File

@ -3,7 +3,13 @@
* main.c (main): "freopen (NULL,.." causes an assertion in MSVC
debug-mode. I.e. NULL isn't legal. But the "CONOUT$" device works
fine.
2009-02-27 Steven Schubiger <stsc@member.fsf.org>
* ftp.c (ftp_loop_internal): Don't claim for FTP retrievals
when writing to standard output either that the document
has been saved. Addresses bug #20520 again.
2009-02-21 Steven Schubiger <stsc@member.fsf.org>
* http.c (http_loop): When a document is written to

View File

@ -1275,8 +1275,17 @@ ftp_loop_internal (struct url *u, struct fileinfo *f, ccon *con)
con->csock = -1;
}
if (!opt.spider)
logprintf (LOG_VERBOSE, _("%s (%s) - %s saved [%s]\n\n"),
tms, tmrate, quote (locf), number_to_static_string (len));
{
bool write_to_stdout = (opt.output_document && HYPHENP (opt.output_document));
logprintf (LOG_VERBOSE,
write_to_stdout
? _("%s (%s) - written to stdout %s[%s]\n\n")
: _("%s (%s) - %s saved [%s]\n\n"),
tms, tmrate,
write_to_stdout ? "" : quote (locf),
number_to_static_string (len));
}
if (!opt.verbose && !opt.quiet)
{
/* Need to hide the password from the URL. The `if' is here