imap: Fixed response check for NOOP command

This commit is contained in:
Steve Holme
2013-09-14 10:40:32 +01:00
parent 83f6f58834
commit fbcefc0ce0
2 changed files with 3 additions and 2 deletions

View File

@@ -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;