diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2016-08-22 15:37:03 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2016-09-07 21:24:27 -0400 |
commit | af2d679e1414369f23a2d37a113634b0ac7f38b0 (patch) | |
tree | 0d6263b9a37817fbe2c7c1b52b3118b8a2c83ef6 /lib/strerror.c | |
parent | add8ee7d57bf9d61a586126e1182e7eb356834fe (diff) | |
download | curl-af2d679e1414369f23a2d37a113634b0ac7f38b0.tar.gz |
errors: new alias CURLE_WEIRD_SERVER_REPLY (8)
Since we're using CURLE_FTP_WEIRD_SERVER_REPLY in imap, pop3 and smtp as
more of a generic "failed to parse" introduce an alias without FTP in
the name.
Closes https://github.com/curl/curl/pull/975
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 0e268d5e3..9c58e6b77 100644 --- a/lib/strerror.c +++ b/lib/strerror.c @@ -79,8 +79,8 @@ curl_easy_strerror(CURLcode error) case CURLE_COULDNT_CONNECT: return "Couldn't connect to server"; - case CURLE_FTP_WEIRD_SERVER_REPLY: - return "FTP: weird server reply"; + case CURLE_WEIRD_SERVER_REPLY: + return "Weird server reply"; case CURLE_REMOTE_ACCESS_DENIED: return "Access denied to remote resource"; |