mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -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;
|
||||
}
|
||||
# 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
|
||||
$FTPCMD=$full;
|
||||
$FTPARG="";
|
||||
|
Loading…
Reference in New Issue
Block a user