aboutsummaryrefslogtreecommitdiff
path: root/lib/strerror.c
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2007-08-31 19:36:32 +0000
committerDan Fandrich <dan@coneharvesters.com>2007-08-31 19:36:32 +0000
commit3fa60164af98720696cf157158e78ad4e0540aba (patch)
tree211b90f63ae98fdf016d3f2f249eadcc6c9155c7 /lib/strerror.c
parentac6e0501c6a337ee39516d2ae085307d0c4f7a6e (diff)
Renamed the CURLE_FTP_SSL_FAILED error code to CURLE_USE_SSL_FAILED.
Renamed the curl_ftpssl enum to curl_usessl and its enumerated constants, creating macros for backward compatibility.
Diffstat (limited to 'lib/strerror.c')
-rw-r--r--lib/strerror.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/strerror.c b/lib/strerror.c
index 9193fd0ca..658a8cba1 100644
--- a/lib/strerror.c
+++ b/lib/strerror.c
@@ -216,8 +216,8 @@ curl_easy_strerror(CURLcode error)
case CURLE_FILESIZE_EXCEEDED:
return "Maximum file size exceeded";
- case CURLE_FTP_SSL_FAILED:
- return "Requested FTP SSL level failed";
+ case CURLE_USE_SSL_FAILED:
+ return "Requested SSL level failed";
case CURLE_SSL_SHUTDOWN_FAILED:
return "Failed to shut down the SSL connection";