mirror of
https://github.com/curl/curl.git
synced 2026-08-26 06:23:32 +03:00
CURLE_FTP_COULDNT_STOR_FILE is now known as CURLE_UPLOAD_FAILED. This is
because I just made SCP uploads return this value if the file size of the upload file isn't given with CURLOPT_INFILESIZE*. Docs updated to reflect this news, and a define for the old name was added to the public header file.
This commit is contained in:
parent
ad19f95f15
commit
1b7f00b2a6
6 changed files with 51 additions and 14 deletions
|
|
@ -123,8 +123,8 @@ curl_easy_strerror(CURLcode error)
|
|||
case CURLE_WRITE_ERROR:
|
||||
return "failed writing received data to disk/application";
|
||||
|
||||
case CURLE_FTP_COULDNT_STOR_FILE:
|
||||
return "failed FTP upload (the STOR command)";
|
||||
case CURLE_UPLOAD_FAILED:
|
||||
return "upload failed (at start/before it took off)";
|
||||
|
||||
case CURLE_READ_ERROR:
|
||||
return "failed to open/read local data from file/application";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue