diff options
author | Daniel Stenberg <daniel@haxx.se> | 2012-05-27 14:08:46 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-05-27 14:08:46 +0200 |
commit | dc454bd16b546871b9910ec4d4b0ade899c43e56 (patch) | |
tree | 4f0bfa963c4a54e2024b5c8f704cc64d1f800918 | |
parent | c6495bccbf7485d9088e994bf27cb2efd3b29d47 (diff) |
pop3: remove trailing whitespace
-rw-r--r-- | lib/pop3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pop3.c b/lib/pop3.c index 99dc6c537..ae540378f 100644 --- a/lib/pop3.c +++ b/lib/pop3.c @@ -214,7 +214,7 @@ static int pop3_endofresp(struct pingpong *pp, int *resp) char *line = pp->linestart_resp; size_t len = pp->nread_resp; - if((len < 3 || memcmp("+OK", line, 3)) && + if((len < 3 || memcmp("+OK", line, 3)) && (len < 4 || memcmp("-ERR", line, 4))) return FALSE; /* Nothing for us */ |