From: Steve Holme Date: Sat, 23 Nov 2013 19:19:12 +0000 (+0000) Subject: ftpserver.pl: Fixed unknown IMAP command "*" X-Git-Tag: curl-7_34_0~54 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7a36b2abc06862;p=thirdparty%2Fcurl.git ftpserver.pl: Fixed unknown IMAP command "*" --- diff --git a/tests/ftpserver.pl b/tests/ftpserver.pl index d14f7d3059..38f0f3d3a6 100755 --- a/tests/ftpserver.pl +++ b/tests/ftpserver.pl @@ -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="";