mirror of
https://github.com/curl/curl.git
synced 2025-09-12 07:02:41 +03:00
pop3: fix multi-line with LIST arg
The POP3 LIST command is not multi-line when having an argument. Fix the definition to correct the behaviour. Reported-by: ralfjunker on github Fixes #14801 Closes #14808
This commit is contained in:
parent
435dd8aa6e
commit
b1f0b8f601
|
@ -215,7 +215,7 @@ static const struct pop3_cmd pop3cmds[] = {
|
||||||
{ "AUTH", 4, FALSE, FALSE },
|
{ "AUTH", 4, FALSE, FALSE },
|
||||||
{ "CAPA", 4, TRUE, TRUE },
|
{ "CAPA", 4, TRUE, TRUE },
|
||||||
{ "DELE", 4, FALSE, FALSE },
|
{ "DELE", 4, FALSE, FALSE },
|
||||||
{ "LIST", 4, TRUE, TRUE },
|
{ "LIST", 4, TRUE, FALSE },
|
||||||
{ "MSG", 3, TRUE, TRUE },
|
{ "MSG", 3, TRUE, TRUE },
|
||||||
{ "NOOP", 4, FALSE, FALSE },
|
{ "NOOP", 4, FALSE, FALSE },
|
||||||
{ "PASS", 4, FALSE, FALSE },
|
{ "PASS", 4, FALSE, FALSE },
|
||||||
|
|
Loading…
Reference in New Issue
Block a user