From 60aa975610b2e72a6625888bb530a032963b2e9c Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 17 Apr 2001 13:21:13 +0000 Subject: Frederic Lepied's ftp download resume fix --- lib/ftp.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/ftp.c b/lib/ftp.c index 701b497e6..8fda9f477 100644 --- a/lib/ftp.c +++ b/lib/ftp.c @@ -1504,7 +1504,7 @@ again:; data->resume_from = foundsize - downloadsize; } else { - if(foundsize <= data->resume_from) { + if(foundsize < data->resume_from) { failf(data, "Offset (%d) was beyond file size (%d)", data->resume_from, foundsize); return CURLE_FTP_BAD_DOWNLOAD_RESUME; @@ -1514,6 +1514,11 @@ again:; } } + if (downloadsize == 0) { + failf(data, "File already complete"); + return CURLE_ALREADY_COMPLETE; + } + /* Set resume file transfer offset */ infof(data, "Instructs server to resume from offset %d\n", data->resume_from); -- cgit v1.2.3