diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2007-08-31 19:36:32 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2007-08-31 19:36:32 +0000 |
commit | 3fa60164af98720696cf157158e78ad4e0540aba (patch) | |
tree | 211b90f63ae98fdf016d3f2f249eadcc6c9155c7 /lib/strerror.c | |
parent | ac6e0501c6a337ee39516d2ae085307d0c4f7a6e (diff) | |
download | curl-3fa60164af98720696cf157158e78ad4e0540aba.tar.gz |
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.c | 4 |
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"; |