mirror of
https://github.com/curl/curl.git
synced 2025-02-23 15:10:03 +08: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 },
|
||||
{ "CAPA", 4, TRUE, TRUE },
|
||||
{ "DELE", 4, FALSE, FALSE },
|
||||
{ "LIST", 4, TRUE, TRUE },
|
||||
{ "LIST", 4, TRUE, FALSE },
|
||||
{ "MSG", 3, TRUE, TRUE },
|
||||
{ "NOOP", 4, FALSE, FALSE },
|
||||
{ "PASS", 4, FALSE, FALSE },
|
||||
|
Loading…
Reference in New Issue
Block a user