1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

imap: Simplified command response test in imap_endofresp()

This commit is contained in:
Jiri Hruska 2013-02-24 12:23:06 +01:00 committed by Steve Holme
parent 324b7fe47b
commit c38d69f06a

View File

@ -335,12 +335,10 @@ static bool imap_endofresp(struct connectdata *conn, char *line, size_t len,
size_t wordlen;
/* Do we have a tagged command response? */
if(len >= id_len + 3) {
if(!memcmp(id, line, id_len) && line[id_len] == ' ') {
*resp = line[id_len + 1]; /* O, N or B */
if(len >= id_len + 3 && !memcmp(id, line, id_len) && line[id_len] == ' ') {
*resp = line[id_len + 1]; /* O, N or B */
return TRUE;
}
return TRUE;
}
/* Do we have a continuation response? */