From: Steve Holme Date: Sat, 19 Oct 2013 23:30:03 +0000 (+0100) Subject: ftpserver.pl: Fixed syntax error from commit 5b31b38c27bb7a X-Git-Tag: curl-7_34_0~215 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dead10b1b8c672091de007e25f21d1974e30ef93;p=curl ftpserver.pl: Fixed syntax error from commit 5b31b38c27bb7a --- diff --git a/tests/ftpserver.pl b/tests/ftpserver.pl index 5c5d19a53..7e61c2049 100755 --- a/tests/ftpserver.pl +++ b/tests/ftpserver.pl @@ -3060,7 +3060,7 @@ while(1) { } elsif($proto eq "pop3") { # POP3 long "commands" are base64 authentication data - unless($full =~ /^[A-Z0-9+\/]+={0,2}$/i)) { + unless($full =~ /^[A-Z0-9+\/]+={0,2}$/i) { sendcontrol "-ERR '$full': command not understood.\r\n"; last; }