mirror of
https://github.com/curl/curl.git
synced 2026-05-10 17:26:20 +03:00
imap: Added check for new internal imap response code
This commit is contained in:
parent
37f0caeabd
commit
d23d2f2bd8
1 changed files with 4 additions and 0 deletions
|
|
@ -1283,6 +1283,10 @@ static CURLcode imap_statemach_act(struct connectdata *conn)
|
|||
if(result)
|
||||
return result;
|
||||
|
||||
/* Was there an error parsing the response line? */
|
||||
if(imapcode == -1)
|
||||
return CURLE_FTP_WEIRD_SERVER_REPLY;
|
||||
|
||||
if(imapcode) {
|
||||
/* We have now received a full IMAP server response */
|
||||
switch(imapc->state) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue