Loading lib/imap.c +3 −5 Original line number Diff line number Diff line Loading @@ -335,13 +335,11 @@ 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] == ' ') { if(len >= id_len + 3 && !memcmp(id, line, id_len) && line[id_len] == ' ') { *resp = line[id_len + 1]; /* O, N or B */ return TRUE; } } /* Do we have a continuation response? */ if((len == 3 && !memcmp("+", line, 1)) || Loading Loading
lib/imap.c +3 −5 Original line number Diff line number Diff line Loading @@ -335,13 +335,11 @@ 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] == ' ') { if(len >= id_len + 3 && !memcmp(id, line, id_len) && line[id_len] == ' ') { *resp = line[id_len + 1]; /* O, N or B */ return TRUE; } } /* Do we have a continuation response? */ if((len == 3 && !memcmp("+", line, 1)) || Loading