Loading lib/imap.c +3 −3 Original line number Diff line number Diff line Loading @@ -331,7 +331,7 @@ static int imap_endofresp(struct pingpong *pp, int *resp) /* Do we have a generic command response? */ if(len >= id_len + 3) { if(!memcmp(id, line, id_len) && (line[id_len] == ' ') ) { if(!memcmp(id, line, id_len) && line[id_len] == ' ') { *resp = line[id_len + 1]; /* O, N or B */ return TRUE; } Loading Loading
lib/imap.c +3 −3 Original line number Diff line number Diff line Loading @@ -331,7 +331,7 @@ static int imap_endofresp(struct pingpong *pp, int *resp) /* Do we have a generic command response? */ if(len >= id_len + 3) { if(!memcmp(id, line, id_len) && (line[id_len] == ' ') ) { if(!memcmp(id, line, id_len) && line[id_len] == ' ') { *resp = line[id_len + 1]; /* O, N or B */ return TRUE; } Loading