1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

my contentlength adjustment broke the ftp download range stuff, this makes

it work again
This commit is contained in:
Daniel Stenberg 2003-12-03 08:26:31 +00:00
parent 06c38330ba
commit 8ccc1148d9

View File

@ -1829,7 +1829,7 @@ CURLcode Curl_ftp_nextconnect(struct connectdata *conn)
conn->maxdownload);
}
infof(data, "range-download from %d to %d, totally %d bytes\n",
from, to, totalsize);
from, to, conn->maxdownload);
ftp->dont_check = TRUE; /* dont check for successful transfer */
}
@ -2041,6 +2041,9 @@ CURLcode Curl_ftp_nextconnect(struct connectdata *conn)
return result;
}
if(size > conn->maxdownload)
size = conn->size = conn->maxdownload;
infof(data, "Getting file with size: %d\n", size);
/* FTP download: */