Commit dead10b1 authored by Steve Holme's avatar Steve Holme
Browse files

ftpserver.pl: Fixed syntax error from commit 5b31b38c

parent 41d820d2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
            }