summaryrefslogtreecommitdiff
path: root/lib/libfetch
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2003-01-22 17:52:27 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2003-01-22 17:52:27 +0000
commit591c019988e39716600efcc1f034e88e6ddea676 (patch)
tree8c19a0f38aedbcf09761e144e674fcfad3d02397 /lib/libfetch
parent256b988c931403674560e77c9e79f9f73a1d8392 (diff)
Notes
Diffstat (limited to 'lib/libfetch')
-rw-r--r--lib/libfetch/http.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libfetch/http.c b/lib/libfetch/http.c
index 00f28e8768c5..8eebb8310b5a 100644
--- a/lib/libfetch/http.c
+++ b/lib/libfetch/http.c
@@ -887,7 +887,7 @@ _http_request(struct url *URL, const char *op, struct url_stat *us,
_http_cmd(conn, "User-Agent: %s", p);
else
_http_cmd(conn, "User-Agent: %s " _LIBFETCH_VER, getprogname());
- if (url->offset)
+ if (url->offset > 0)
_http_cmd(conn, "Range: bytes=%lld-", (long long)url->offset);
_http_cmd(conn, "Connection: close");
_http_cmd(conn, "");
@@ -1059,7 +1059,7 @@ _http_request(struct url *URL, const char *op, struct url_stat *us,
}
/* too far? */
- if (offset > URL->offset) {
+ if (URL->offset > 0 && offset > URL->offset) {
_http_seterr(HTTP_PROTOCOL_ERROR);
goto ouch;
}