Commit d86503ea authored by Steve Holme's avatar Steve Holme
Browse files

imap.c: Minor follow up tidy up

parent bd8ae680
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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;
    }