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 /include/curl | |
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 'include/curl')
-rw-r--r-- | include/curl/curl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index bba1e6d3b..0ac238c28 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -435,7 +435,7 @@ typedef enum { CURLE_COULDNT_RESOLVE_PROXY, /* 5 */ CURLE_COULDNT_RESOLVE_HOST, /* 6 */ CURLE_COULDNT_CONNECT, /* 7 */ - CURLE_FTP_WEIRD_SERVER_REPLY, /* 8 */ + CURLE_WEIRD_SERVER_REPLY, /* 8 */ CURLE_REMOTE_ACCESS_DENIED, /* 9 a service was denied by the server due to lack of access - when login fails this is not returned. */ @@ -566,6 +566,7 @@ typedef enum { /* compatibility with older names */ #define CURLOPT_ENCODING CURLOPT_ACCEPT_ENCODING +#define CURLE_FTP_WEIRD_SERVER_REPLY CURLE_WEIRD_SERVER_REPLY /* The following were added in 7.21.5, April 2011 */ #define CURLE_UNKNOWN_TELNET_OPTION CURLE_UNKNOWN_OPTION |