imap: Fixed response check for LSUB and UID commands

This commit is contained in:
Steve Holme 2013-09-11 20:13:24 +01:00
parent 3f6991766f
commit f3c9749a40
2 changed files with 4 additions and 2 deletions

View File

@ -26,7 +26,7 @@ This release includes the following bugfixes:
o tests 2032, 2033: Don't hardcode port in expected output o tests 2032, 2033: Don't hardcode port in expected output
o urlglob: better detect unclosed braces, empty lists and overflows [7] o urlglob: better detect unclosed braces, empty lists and overflows [7]
o urlglob: error out on range overflow [8] o urlglob: error out on range overflow [8]
o imap: Fixed response check for SEARCH and EXPUNGE commands [10] o imap: Fixed response check for SEARCH, EXPUNGE, LSUB and UID commands [10]
o handle arbitrary-length username and password [2] o handle arbitrary-length username and password [2]
o TFTP: make the CURLOPT_LOW_SPEED* options work [4] o TFTP: make the CURLOPT_LOW_SPEED* options work [4]
o curl.h: name space pollution by "enum type" [5] o curl.h: name space pollution by "enum type" [5]

View File

@ -310,7 +310,9 @@ static bool imap_endofresp(struct connectdata *conn, char *line, size_t len,
strcmp(imap->custom, "SELECT") && strcmp(imap->custom, "SELECT") &&
strcmp(imap->custom, "EXAMINE") && strcmp(imap->custom, "EXAMINE") &&
strcmp(imap->custom, "SEARCH") && strcmp(imap->custom, "SEARCH") &&
strcmp(imap->custom, "EXPUNGE"))) strcmp(imap->custom, "EXPUNGE") &&
strcmp(imap->custom, "LSUB") &&
strcmp(imap->custom, "UID")))
return FALSE; return FALSE;
break; break;