httpd: fix compile failure if !FEATURE_HTTPD_RANGES
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
4fe954c148
commit
97c00ae134
@ -1880,9 +1880,13 @@ static NOINLINE void send_file_and_exit(const char *url, int what)
|
|||||||
#if ENABLE_FEATURE_USE_SENDFILE
|
#if ENABLE_FEATURE_USE_SENDFILE
|
||||||
{
|
{
|
||||||
off_t offset;
|
off_t offset;
|
||||||
|
# if ENABLE_FEATURE_HTTPD_RANGES
|
||||||
if (range_start < 0)
|
if (range_start < 0)
|
||||||
range_start = 0;
|
range_start = 0;
|
||||||
offset = range_start;
|
offset = range_start;
|
||||||
|
# else
|
||||||
|
offset = 0;
|
||||||
|
# endif
|
||||||
while (1) {
|
while (1) {
|
||||||
/* sz is rounded down to 64k */
|
/* sz is rounded down to 64k */
|
||||||
ssize_t sz = MAXINT(ssize_t) - 0xffff;
|
ssize_t sz = MAXINT(ssize_t) - 0xffff;
|
||||||
|
Loading…
Reference in New Issue
Block a user