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/pop3.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/pop3.c')
-rw-r--r-- | lib/pop3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pop3.c b/lib/pop3.c index 591e877f5..154e5c38b 100644 --- a/lib/pop3.c +++ b/lib/pop3.c @@ -663,7 +663,7 @@ static CURLcode pop3_state_servergreet_resp(struct connectdata *conn, if(pop3code != '+') { failf(data, "Got unexpected pop3-server response"); - result = CURLE_FTP_WEIRD_SERVER_REPLY; + result = CURLE_WEIRD_SERVER_REPLY; } else { /* Does the server support APOP authentication? */ |