Commit 6478e1d7 authored by Steve Holme's avatar Steve Holme
Browse files

pop3.c: Fixed length of SASL check

parent a884ffe4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -240,7 +240,7 @@ static int pop3_endofresp(struct pingpong *pp, int *resp)
    }

    /* We are only interested in the SASL line */
    if(len < 4 || memcmp(line, "SASL", 3)) {
    if(len < 4 || memcmp(line, "SASL", 4)) {
      return FALSE;
    }