mirror of
https://github.com/curl/curl.git
synced 2026-07-25 02:37:18 +03:00
imap: Fixed response check for NOOP command
This commit is contained in:
parent
83f6f58834
commit
fbcefc0ce0
2 changed files with 3 additions and 2 deletions
|
|
@ -312,7 +312,8 @@ static bool imap_endofresp(struct connectdata *conn, char *line, size_t len,
|
|||
strcmp(imap->custom, "SEARCH") &&
|
||||
strcmp(imap->custom, "EXPUNGE") &&
|
||||
strcmp(imap->custom, "LSUB") &&
|
||||
strcmp(imap->custom, "UID")))
|
||||
strcmp(imap->custom, "UID") &&
|
||||
strcmp(imap->custom, "NOOP")))
|
||||
return FALSE;
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue