pop3: remove trailing whitespace

This commit is contained in:
Daniel Stenberg 2012-05-27 14:08:46 +02:00
Родитель c6495bccbf
Коммит dc454bd16b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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 */