From 7ea2e1d0c5a7fc7e2797a2d3c2a2429d6e09e581 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 12 Sep 2020 18:27:08 +0200 Subject: ftp: a 550 response to SIZE returns CURLE_REMOTE_FILE_NOT_FOUND This is primarily interesting for cases where CURLOPT_NOBODY is set as previously curl would not return an error for this case. MDTM getting 550 now also returns this error (it returned CURLE_FTP_COULDNT_RETR_FILE before) in order to unify return codes for missing files across protocols and specific FTP commands. libcurl already returns error on a 550 as a MDTM response (when CURLOPT_FILETIME is set). If CURLOPT_NOBODY is not set, an error would happen subsequently anyway since the RETR command would fail. Add test 1913 and 1914 to verify. Updated several tests accordingly due to the updated SIZE behavior. Reported-by: Tomas Berger Fixes #5953 Closes #5957 --- tests/data/test546 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/data/test546') diff --git a/tests/data/test546 b/tests/data/test546 index 12e604a0e..00dca99fa 100644 --- a/tests/data/test546 +++ b/tests/data/test546 @@ -21,7 +21,7 @@ works REPLY RETR 550 the file doesn't exist COUNT RETR 1 -REPLY SIZE 550 Can't check for file existence +REPLY SIZE 500 Can't check for file existence COUNT SIZE 1 -- cgit v1.2.3