]> granicus.if.org Git - curl/commitdiff
ftpserver.pl: Fixed syntax error from commit 5b31b38c27bb7a
authorSteve Holme <steve_holme@hotmail.com>
Sat, 19 Oct 2013 23:30:03 +0000 (00:30 +0100)
committerSteve Holme <steve_holme@hotmail.com>
Sat, 19 Oct 2013 23:30:03 +0000 (00:30 +0100)
tests/ftpserver.pl

index 5c5d19a5341f7417f79e3edf72c145138bca7a51..7e61c204967168cd04ba50e38170c8c6e56b0f5e 100755 (executable)
@@ -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;
             }