Getting an empty FTP file no longer makes us return error 19. An empty file

is fine to get.
This commit is contained in:
Daniel Stenberg 2002-05-28 22:33:30 +00:00
parent 775645f29b
commit 62032ee248
1 changed files with 1 additions and 1 deletions

View File

@ -637,7 +637,7 @@ CURLcode Curl_ftp_done(struct connectdata *conn)
} }
else if(!conn->bits.resume_done && else if(!conn->bits.resume_done &&
!data->set.no_body && !data->set.no_body &&
(0 == *ftp->bytecountp)) { (!*ftp->bytecountp && (conn->size>0))) {
/* We consider this an error, but there's no true FTP error received /* We consider this an error, but there's no true FTP error received
why we need to continue to "read out" the server response too. why we need to continue to "read out" the server response too.
We don't want to leave a "waiting" server reply if we'll get told We don't want to leave a "waiting" server reply if we'll get told