diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2007-01-08 11:24:11 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2007-01-08 11:24:11 +0000 |
commit | d4651994110612c476a2b65dfa0f9b4f138fca68 (patch) | |
tree | 28a4ed8c9b06a200b670516c700c9a2baa3d2081 /lib/strerror.c | |
parent | 55123424c896feb6581b086f5cac87c1d6df562f (diff) |
Correct error code for CCC/SSL shutdown failure
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 2634dffdb..6304fe89d 100644 --- a/lib/strerror.c +++ b/lib/strerror.c @@ -244,8 +244,8 @@ curl_easy_strerror(CURLcode error) case CURLE_FTP_SSL_FAILED: return "Requested FTP SSL level failed"; - case CURLE_FTP_SSL_CCC_FAILED: - return "Failed to clear the FTP command channel"; + case CURLE_SSL_SHUTDOWN_FAILED: + return "Failed to shut down the SSL connection"; case CURLE_SEND_FAIL_REWIND: return "Send failed since rewinding of the data stream failed"; |