1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Backing out incomplete changes for bug 20323, until the full fix is

ready (so we have a working trunk).
This commit is contained in:
micah 2007-07-10 21:39:36 -07:00
parent 0b2296c0d4
commit 78aefb3bbf
2 changed files with 2 additions and 6 deletions

View File

@ -15,11 +15,6 @@
Updated GPL reference to version 3 or later, removed FSF
address.
2007-07-04 Mauro Tortonesi <mauro@ferrara.linux.it>
* http.c (http_loop): Skip HEAD request and start immediately with GET
if -O is given.
2007-02-02 Hrvoje Niksic <hniksic@xemacs.org>
* http.c (print_server_response): Escape non-printable characters

View File

@ -2342,7 +2342,8 @@ Spider mode enabled. Check if remote file exists.\n"));
/* Default document type is empty. However, if spider mode is
on or time-stamping is employed, HEAD_ONLY commands is
encoded within *dt. */
if (((opt.spider || opt.timestamping) && !got_head) || !got_name)
if (((opt.spider || opt.timestamping) && !got_head)
|| (opt.always_rest && !got_name))
*dt |= HEAD_ONLY;
else
*dt &= ~HEAD_ONLY;