18 lines
746 B
Diff
18 lines
746 B
Diff
Index: wget-1.19.1/src/http.c
|
|
===================================================================
|
|
--- wget-1.19.1.orig/src/http.c
|
|
+++ wget-1.19.1/src/http.c
|
|
@@ -3818,6 +3818,12 @@ gethttp (const struct url *u, struct url
|
|
}
|
|
}
|
|
|
|
+ if (statcode == HTTP_STATUS_RANGE_NOT_SATISFIABLE)
|
|
+ {
|
|
+ logputs (LOG_VERBOSE, "hs->restval=%s\n", number_to_string(hs->restval));
|
|
+ logputs (LOG_VERBOSE, "contrange=%s\n", number_to_string(contrange));
|
|
+ logputs (LOG_VERBOSE, "contlen=%s\n\n", number_to_string(contlen));
|
|
+ }
|
|
if (statcode == HTTP_STATUS_RANGE_NOT_SATISFIABLE
|
|
|| (!opt.timestamping && hs->restval > 0 && statcode == HTTP_STATUS_OK
|
|
&& contrange == 0 && contlen >= 0 && hs->restval >= contlen))
|