mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 16:18:48 -05:00
ftpserver.pl: Fixed unknown IMAP command "*"
This commit is contained in:
parent
e1c255f388
commit
7a36b2abc0
@ -3168,7 +3168,8 @@ while(1) {
|
|||||||
$FTPARG=$3;
|
$FTPARG=$3;
|
||||||
}
|
}
|
||||||
# IMAP long "commands" are base64 authentication data
|
# IMAP long "commands" are base64 authentication data
|
||||||
elsif($full =~ /^[A-Z0-9+\/]*={0,2}$/i) {
|
elsif(($full =~ /^[A-Z0-9+\/]*={0,2}$/i) ||
|
||||||
|
($full == "*")) {
|
||||||
# Command id has already been set
|
# Command id has already been set
|
||||||
$FTPCMD=$full;
|
$FTPCMD=$full;
|
||||||
$FTPARG="";
|
$FTPARG="";
|
||||||
|
Loading…
Reference in New Issue
Block a user