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

[svn] Skip HEAD request and start immediately with GET if -O is given.

This commit is contained in:
mtortonesi 2007-07-03 16:01:25 -07:00
parent 9b593768f7
commit dfeb089f3c
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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

@ -2343,8 +2343,7 @@ 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)
|| (opt.always_rest && !got_name))
if (((opt.spider || opt.timestamping) && !got_head) || !got_name)
*dt |= HEAD_ONLY;
else
*dt &= ~HEAD_ONLY;