Unverified Commit b20df573 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

ftpserver: support case insensitive commands

parent 38ab7b4c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3193,7 +3193,7 @@ while(1) {
                }

                # only perform this if we're not faking a reply
                my $func = $commandfunc{$FTPCMD};
                my $func = $commandfunc{uc($FTPCMD)};
                if($func) {
                    &$func($FTPARG, $FTPCMD);
                    $check = 0;