mirror of
https://github.com/curl/curl.git
synced 2026-08-26 11:43:32 +03:00
imap: Fixed response check for EXPUNGE command
This commit is contained in:
parent
1ca6ed7b75
commit
f3849a7b84
2 changed files with 4 additions and 2 deletions
|
|
@ -309,7 +309,8 @@ static bool imap_endofresp(struct connectdata *conn, char *line, size_t len,
|
|||
!imap_matchresp(line, len, "FETCH")) &&
|
||||
strcmp(imap->custom, "SELECT") &&
|
||||
strcmp(imap->custom, "EXAMINE") &&
|
||||
strcmp(imap->custom, "SEARCH")))
|
||||
strcmp(imap->custom, "SEARCH") &&
|
||||
strcmp(imap->custom, "EXPUNGE")))
|
||||
return FALSE;
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue