mirror of
https://github.com/curl/curl.git
synced 2026-08-02 15:40:32 +03:00
pop3: Fixed incorrect return value from pop3_endofresp()
Corrected an incorrect return value when -ERR is received from the
server - introduced in commit b5bb61ee69 (June 2012).
This commit is contained in:
parent
62bd217464
commit
572f7864b2
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue