pop3: Fixed incorrect return value from pop3_endofresp()
Corrected an incorrect return value when -ERR is received from the server - introduced in commit b5bb61ee697b (June 2012).
This commit is contained in:
parent
62bd217464
commit
572f7864b2
@ -224,7 +224,7 @@ static int pop3_endofresp(struct pingpong *pp, int *resp)
|
||||
if(len >= 4 && !memcmp("-ERR", line, 4)) {
|
||||
*resp = '-';
|
||||
|
||||
return FALSE;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* Are we processing servergreet responses? */
|
||||
|
Loading…
x
Reference in New Issue
Block a user